Skip to content

Commit 9060450

Browse files
committed
update readme
1 parent 3c8228d commit 9060450

1 file changed

Lines changed: 14 additions & 9 deletions

File tree

README.md

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,20 @@ sigdputs(s, STDERR_FILENO);
2424

2525
The `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

0 commit comments

Comments
 (0)