diff options
| author | Alejandro Colomar <alx@kernel.org> | 2025-03-23 19:43:37 +0100 |
|---|---|---|
| committer | Alejandro Colomar <alx@kernel.org> | 2025-03-23 19:43:59 +0100 |
| commit | 87cde07f6a6b86f151743108eb0f4584d84befbc (patch) | |
| tree | fe70ce71398184114968600a8f093d6d2bc41ff7 | |
| parent | 5f4d8a396bde29a21775cc0403c64a1d7c2b16c1 (diff) | |
| download | man-pages-87cde07f6a6b86f151743108eb0f4584d84befbc.tar.gz | |
man/man3/strtoul.3: The prefix "0X" is equivalent to "0x"
strtol(3) mentiones both, but this page somehow forgot the uppercase
variant.
Signed-off-by: Alejandro Colomar <alx@kernel.org>
| -rw-r--r-- | man/man3/strtoul.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/man3/strtoul.3 b/man/man3/strtoul.3 index c4f8961a4d..c6a2bb9be7 100644 --- a/man/man3/strtoul.3 +++ b/man/man3/strtoul.3 @@ -59,7 +59,7 @@ sign. If .I base is zero or 16, the string may then include a -"0x" prefix, and the number will be read in base 16; otherwise, a +"0x" or "0X" prefix, and the number will be read in base 16; otherwise, a zero .I base is taken as 10 (decimal) unless the next character |
