summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/libc/locale/isalnum.33
-rw-r--r--lib/libc/locale/isalpha.33
-rw-r--r--lib/libc/locale/isascii.32
-rw-r--r--lib/libc/locale/iscntrl.33
-rw-r--r--lib/libc/locale/isdigit.33
-rw-r--r--lib/libc/locale/isgraph.33
-rw-r--r--lib/libc/locale/islower.33
-rw-r--r--lib/libc/locale/isprint.33
-rw-r--r--lib/libc/locale/ispunct.33
-rw-r--r--lib/libc/locale/isspace.33
-rw-r--r--lib/libc/locale/isupper.33
-rw-r--r--lib/libc/locale/isxdigit.33
12 files changed, 23 insertions, 12 deletions
diff --git a/lib/libc/locale/isalnum.3 b/lib/libc/locale/isalnum.3
index be99644..60ad8c4 100644
--- a/lib/libc/locale/isalnum.3
+++ b/lib/libc/locale/isalnum.3
@@ -54,7 +54,8 @@ function tests for any character for which
or
.Xr isdigit 3
is true.
-In the ASCII character set, this includes the following characters:
+In the ASCII character set, this includes the following characters
+(with their numeric values shown in octal):
.Pp
.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
.It \&060\ ``0'' \t061\ ``1'' \t062\ ``2'' \t063\ ``3'' \t064\ ``4''
diff --git a/lib/libc/locale/isalpha.3 b/lib/libc/locale/isalpha.3
index 7d9ba66..5dd0a04 100644
--- a/lib/libc/locale/isalpha.3
+++ b/lib/libc/locale/isalpha.3
@@ -54,7 +54,8 @@ function tests for any character for which
or
.Xr islower 3
is true.
-In the ASCII character set, this includes the following characters:
+In the ASCII character set, this includes the following characters
+(with their numeric values shown in octal):
.Pp
.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
.It \&101\ ``A'' \t102\ ``B'' \t103\ ``C'' \t104\ ``D'' \t105\ ``E''
diff --git a/lib/libc/locale/isascii.3 b/lib/libc/locale/isascii.3
index 2315d7e..9700218 100644
--- a/lib/libc/locale/isascii.3
+++ b/lib/libc/locale/isascii.3
@@ -48,7 +48,7 @@ The
function tests for an
.Tn ASCII
character, which is any character with a value less than or
-equal to 0177.
+equal to octal 0177.
.Sh SEE ALSO
.Xr ctype 3 ,
.Xr ascii 7
diff --git a/lib/libc/locale/iscntrl.3 b/lib/libc/locale/iscntrl.3
index 2b5c737..ea01001 100644
--- a/lib/libc/locale/iscntrl.3
+++ b/lib/libc/locale/iscntrl.3
@@ -50,7 +50,8 @@
The
.Fn iscntrl
function tests for any control character.
-In the ASCII character set, this includes the following characters:
+In the ASCII character set, this includes the following characters
+(with their numeric values shown in octal):
.Pp
.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
.It \&000\ nul \t001\ soh \t002\ stx \t003\ etx \t004\ eot
diff --git a/lib/libc/locale/isdigit.3 b/lib/libc/locale/isdigit.3
index dbae177..fa3a736 100644
--- a/lib/libc/locale/isdigit.3
+++ b/lib/libc/locale/isdigit.3
@@ -50,7 +50,8 @@
The
.Fn isdigit
function tests for any decimal-digit character.
-In the ASCII character set, this includes the following characters:
+In the ASCII character set, this includes the following characters
+(with their numeric values shown in octal):
.Pp
.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
.It \&060\ ``0'' \t061\ ``1'' \t062\ ``2'' \t063\ ``3'' \t064\ ``4''
diff --git a/lib/libc/locale/isgraph.3 b/lib/libc/locale/isgraph.3
index 62fe710..347af3a 100644
--- a/lib/libc/locale/isgraph.3
+++ b/lib/libc/locale/isgraph.3
@@ -50,7 +50,8 @@
The
.Fn isgraph
function tests for any printing character except space.
-In the ASCII character set, this includes the following characters:
+In the ASCII character set, this includes the following characters
+(with their numeric values shown in octal):
.Pp
.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
.It \&041\ ``!'' \t042\ ``"'' \t043\ ``#'' \t044\ ``$'' \t045\ ``%''
diff --git a/lib/libc/locale/islower.3 b/lib/libc/locale/islower.3
index b2cca52..5d767c2 100644
--- a/lib/libc/locale/islower.3
+++ b/lib/libc/locale/islower.3
@@ -50,7 +50,8 @@
The
.Fn islower
function tests for any lower-case letters.
-In the ASCII character set, this includes the following characters:
+In the ASCII character set, this includes the following characters
+(with their numeric values shown in octal):
.Pp
.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
.It \&141\ ``a'' \t142\ ``b'' \t143\ ``c'' \t144\ ``d'' \t145\ ``e''
diff --git a/lib/libc/locale/isprint.3 b/lib/libc/locale/isprint.3
index 790015f..6bf1f55 100644
--- a/lib/libc/locale/isprint.3
+++ b/lib/libc/locale/isprint.3
@@ -50,7 +50,8 @@
The
.Fn isprint
function tests for any printing character including space (' ').
-In the ASCII character set, this includes the following characters:
+In the ASCII character set, this includes the following characters
+(with their numeric values shown in octal):
.Pp
.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
.It \&040\ sp \t041\ ``!'' \t042\ ``"'' \t043\ ``#'' \t044\ ``$''
diff --git a/lib/libc/locale/ispunct.3 b/lib/libc/locale/ispunct.3
index 01a75dd..f80d41c 100644
--- a/lib/libc/locale/ispunct.3
+++ b/lib/libc/locale/ispunct.3
@@ -53,7 +53,8 @@ function tests for any printing character except for space (' ') or a
character for which
.Xr isalnum 3
is true.
-In the ASCII character set, this includes the following characters:
+In the ASCII character set, this includes the following characters
+(with their numeric values shown in octal):
.Pp
.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
.It \&041\ ``!'' \t042\ ``"'' \t043\ ``#'' \t044\ ``$'' \t045\ ``%''
diff --git a/lib/libc/locale/isspace.3 b/lib/libc/locale/isspace.3
index c3850a2..e8fa978 100644
--- a/lib/libc/locale/isspace.3
+++ b/lib/libc/locale/isspace.3
@@ -50,7 +50,8 @@
The
.Fn isspace
function tests for the standard white-space characters.
-In the ASCII character set, this includes the following characters:
+In the ASCII character set, this includes the following characters
+(with their numeric values shown in octal):
.Pp
.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
.It \&011\ ht \t012\ nl \t013\ vt \t014\ np \t015\ cr
diff --git a/lib/libc/locale/isupper.3 b/lib/libc/locale/isupper.3
index 77b76be..1ec34d7 100644
--- a/lib/libc/locale/isupper.3
+++ b/lib/libc/locale/isupper.3
@@ -50,7 +50,8 @@
The
.Fn isupper
function tests for any upper-case letter.
-In the ASCII character set, this includes the following characters:
+In the ASCII character set, this includes the following characters
+(with their numeric values shown in octal):
.Pp
.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
.It \&101\ ``A'' \t102\ ``B'' \t103\ ``C'' \t104\ ``D'' \t105\ ``E''
diff --git a/lib/libc/locale/isxdigit.3 b/lib/libc/locale/isxdigit.3
index 31f3158..f2e2ec8 100644
--- a/lib/libc/locale/isxdigit.3
+++ b/lib/libc/locale/isxdigit.3
@@ -50,7 +50,8 @@
The
.Fn isxdigit
function tests for any hexadecimal-digit character.
-In the ASCII character set, this includes the following characters:
+In the ASCII character set, this includes the following characters
+(with their numeric values shown in octal):
.Pp
.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
.It \&060\ ``0'' \t061\ ``1'' \t062\ ``2'' \t063\ ``3'' \t064\ ``4''
OpenPOWER on IntegriCloud