]> Savannah Git Hosting - gnulib.git/commitdiff
*printf-posix: ISO C 23: Add %b directive for binary output of integers.
authorBruno Haible <bruno@clisp.org>
Fri, 17 Mar 2023 22:54:50 +0000 (23:54 +0100)
committerBruno Haible <bruno@clisp.org>
Fri, 17 Mar 2023 22:54:50 +0000 (23:54 +0100)
* lib/printf-parse.h: Update more comments.

lib/printf-parse.h

index fcb3cc462ec700cd24dff5b7700392b8552cbb18..dc4bcfe2a3fa245ba79a0ed15cbbb350a5aba921 100644 (file)
@@ -91,7 +91,7 @@ typedef struct
   const uint8_t* precision_start;
   const uint8_t* precision_end;
   size_t precision_arg_index;
-  uint8_t conversion; /* d i o u x X f F e E g G a A c s p n U % but not C S */
+  uint8_t conversion; /* d i o u x X f F e E g G a A c s p n U % but not C S */
   size_t arg_index;
 }
 u8_directive;
@@ -119,7 +119,7 @@ typedef struct
   const uint16_t* precision_start;
   const uint16_t* precision_end;
   size_t precision_arg_index;
-  uint16_t conversion; /* d i o u x X f F e E g G a A c s p n U % but not C S */
+  uint16_t conversion; /* d i o u x X f F e E g G a A c s p n U % but not C S */
   size_t arg_index;
 }
 u16_directive;
@@ -147,7 +147,7 @@ typedef struct
   const uint32_t* precision_start;
   const uint32_t* precision_end;
   size_t precision_arg_index;
-  uint32_t conversion; /* d i o u x X f F e E g G a A c s p n U % but not C S */
+  uint32_t conversion; /* d i o u x X f F e E g G a A c s p n U % but not C S */
   size_t arg_index;
 }
 u32_directive;