File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,15 +24,20 @@ sigdputs(s, STDERR_FILENO);
2424
2525The ` sigvdprintf ` , ` sigdprintf ` , and ` sigprintf ` functions accept a limited subset of format specifiers as described in the table below:
2626
27- | Format specifier | Description |
28- | ------------------| ------------------------------------------|
29- | %s | Print a string |
30- | %p | Print a pointer |
31- | %d | Print a signed integer |
32- | %ld | Print a signed long integer |
33- | %u | Print an unsigned integer |
34- | %lu | Print an unsigned long integer |
35- | %% | Print a literal '%' |
27+ | Format specifier | Description |
28+ | ------------------| -------------------------------------------------|
29+ | %d | Print a signed integer |
30+ | %u | Print an unsigned integer |
31+ | %ld | Print a signed long integer |
32+ | %lu | Print an unsigned long integer |
33+ | %x | Print an unsigned integer in hexadecimal |
34+ | %lx | Print an unsigned long integer in hexadecimal |
35+ | %p | Print a pointer |
36+ | %c | Print a character |
37+ | %s | Print a string |
38+ | %% | Print a literal '%' |
39+
40+ NOTE: These specifiers do not support width, precision, or length modifiers.
3641
3742## Building
3843
You can’t perform that action at this time.
0 commit comments