include/inttypes.h: Appease nxstyle

This commit is contained in:
YAMAMOTO Takashi 2020-11-06 08:12:46 +09:00 committed by Xiang Xiao
parent 6e3551866c
commit 4c33d608d2
1 changed files with 7 additions and 6 deletions

View File

@ -60,12 +60,13 @@
* modifier, suitable for use within the format argument of a formatted * modifier, suitable for use within the format argument of a formatted
* input/output function when converting the corresponding integer type. * input/output function when converting the corresponding integer type.
* These macros have the general form of PRI (character string literals for * These macros have the general form of PRI (character string literals for
* the fprintf() and fwprintf() family of functions) or SCN (character string * the fprintf() and fwprintf() family of functions) or SCN (character
* literals for the fscanf() and fwscanf() family of functions), followed by * string literals for the fscanf() and fwscanf() family of functions),
* the conversion specifier, followed by a name corresponding to a similar * followed by the conversion specifier, followed by a name corresponding
* type name in <stdint.h>. In these names, N represents the width of the * to a similar type name in <stdint.h>. In these names, N represents the
* type as described in <stdint.h>. For example, PRIdFAST32 can be used in a * width of the type as described in <stdint.h>. For example, PRIdFAST32
* format string to print the value of an integer of type int_fast32_t. * can be used in a format string to print the value of an integer of type
* int_fast32_t.
* *
* "The fprintf() macros for signed integers are: * "The fprintf() macros for signed integers are:
* *