+2024-06-19 Bruno Haible <bruno@clisp.org>
+
+ u*-vasnprintf: Improve comments.
+ * lib/vasnprintf.c (VASNPRINTF): Improve comments.
+
2024-06-19 Bruno Haible <bruno@clisp.org>
u*-vasnprintf tests: Add more tests of %U, %lU, %llU directives.
{
/* Use the entire string. */
arg_end = arg + u8_strlen (arg);
- /* The number of characters doesn't matter. */
+ /* The number of characters doesn't matter,
+ because !has_width and therefore width==0. */
characters = 0;
}
{
/* Use the entire string. */
arg_end = arg + u16_strlen (arg);
- /* The number of characters doesn't matter. */
+ /* The number of characters doesn't matter,
+ because !has_width and therefore width==0. */
characters = 0;
}
{
/* Use the entire string. */
arg_end = arg + u32_strlen (arg);
- /* The number of characters doesn't matter. */
+ /* The number of characters doesn't matter,
+ because !has_width and therefore width==0. */
characters = 0;
}