list the specific ASCII characters handled by the isXXX() functions
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Mon, 28 Oct 1991 03:30:30 +0000 (19:30 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Mon, 28 Oct 1991 03:30:30 +0000 (19:30 -0800)
SCCS-vsn: lib/libc/locale/isalnum.3 5.4
SCCS-vsn: lib/libc/locale/isalpha.3 5.4
SCCS-vsn: lib/libc/locale/isascii.3 5.3
SCCS-vsn: lib/libc/locale/iscntrl.3 5.4
SCCS-vsn: lib/libc/locale/isdigit.3 5.4
SCCS-vsn: lib/libc/locale/isgraph.3 5.4
SCCS-vsn: lib/libc/locale/islower.3 5.4
SCCS-vsn: lib/libc/locale/isprint.3 5.4
SCCS-vsn: lib/libc/locale/ispunct.3 5.4
SCCS-vsn: lib/libc/locale/isspace.3 5.5
SCCS-vsn: lib/libc/locale/isupper.3 5.4
SCCS-vsn: lib/libc/locale/isxdigit.3 5.4

12 files changed:
usr/src/lib/libc/locale/isalnum.3
usr/src/lib/libc/locale/isalpha.3
usr/src/lib/libc/locale/isascii.3
usr/src/lib/libc/locale/iscntrl.3
usr/src/lib/libc/locale/isdigit.3
usr/src/lib/libc/locale/isgraph.3
usr/src/lib/libc/locale/islower.3
usr/src/lib/libc/locale/isprint.3
usr/src/lib/libc/locale/ispunct.3
usr/src/lib/libc/locale/isspace.3
usr/src/lib/libc/locale/isupper.3
usr/src/lib/libc/locale/isxdigit.3

index aa95a6d..8483f02 100644 (file)
@@ -7,7 +7,7 @@
 .\"
 .\" %sccs.include.redist.man%
 .\"
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"     @(#)isalnum.3  5.3 (Berkeley) %G%
+.\"     @(#)isalnum.3  5.4 (Berkeley) %G%
 .\"
 .Dd 
 .Dt ISALNUM 3
 .\"
 .Dd 
 .Dt ISALNUM 3
@@ -27,6 +27,23 @@ function tests for any character for which
 or
 .Xr isdigit 3
 is true.
 or
 .Xr isdigit 3
 is true.
+In the ASCII character set, this includes the following characters:
+.sp
+.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
+.It \&060\ ``0'' \t061\ ``1'' \t062\ ``2'' \t063\ ``3'' \t064\ ``4''
+.It \&065\ ``5'' \t066\ ``6'' \t067\ ``7'' \t070\ ``8'' \t071\ ``9''
+.It \&101\ ``A'' \t102\ ``B'' \t103\ ``C'' \t104\ ``D'' \t105\ ``E''
+.It \&106\ ``F'' \t107\ ``G'' \t110\ ``H'' \t111\ ``I'' \t112\ ``J''
+.It \&113\ ``K'' \t114\ ``L'' \t115\ ``M'' \t116\ ``N'' \t117\ ``O''
+.It \&120\ ``P'' \t121\ ``Q'' \t122\ ``R'' \t123\ ``S'' \t124\ ``T''
+.It \&125\ ``U'' \t126\ ``V'' \t127\ ``W'' \t130\ ``X'' \t131\ ``Y''
+.It \&132\ ``Z'' \t141\ ``a'' \t142\ ``b'' \t143\ ``c'' \t144\ ``d''
+.It \&145\ ``e'' \t146\ ``f'' \t147\ ``g'' \t150\ ``h'' \t151\ ``i''
+.It \&152\ ``j'' \t153\ ``k'' \t154\ ``l'' \t155\ ``m'' \t156\ ``n''
+.It \&157\ ``o'' \t160\ ``p'' \t161\ ``q'' \t162\ ``r'' \t163\ ``s''
+.It \&164\ ``t'' \t165\ ``u'' \t166\ ``v'' \t167\ ``w'' \t170\ ``x''
+.It \&171\ ``y'' \t172\ ``z''
+.El
 .Sh RETURN VALUES
 The
 .Fn isalnum
 .Sh RETURN VALUES
 The
 .Fn isalnum
index d903262..2be200f 100644 (file)
@@ -7,7 +7,7 @@
 .\"
 .\" %sccs.include.redist.man%
 .\"
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"     @(#)isalpha.3  5.3 (Berkeley) %G%
+.\"     @(#)isalpha.3  5.4 (Berkeley) %G%
 .\"
 .Dd 
 .Dt ISALPHA 3
 .\"
 .Dd 
 .Dt ISALPHA 3
@@ -26,24 +26,22 @@ function tests for any character for which
 .Xr isupper 3
 or
 .Xr islower 3
 .Xr isupper 3
 or
 .Xr islower 3
-is true and
-.\" , or any of an implementation-defined set of characters
-for which none of
-.Xr iscntrl 3 ,
-.Xr isdigit 3 ,
-.Xr ispunct 3 ,
-or
-.Xr isspace 3
-is true.
-In the 
-.Em ``C''
-locale,
-.Fn isalpha
-returns true only for the characters for which
-.Xr isupper 3
-or
-.Xr islower 3
 is true.
 is true.
+In the ASCII character set, this includes the following characters:
+.sp
+.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
+.It \&101\ ``A'' \t102\ ``B'' \t103\ ``C'' \t104\ ``D'' \t105\ ``E''
+.It \&106\ ``F'' \t107\ ``G'' \t110\ ``H'' \t111\ ``I'' \t112\ ``J''
+.It \&113\ ``K'' \t114\ ``L'' \t115\ ``M'' \t116\ ``N'' \t117\ ``O''
+.It \&120\ ``P'' \t121\ ``Q'' \t122\ ``R'' \t123\ ``S'' \t124\ ``T''
+.It \&125\ ``U'' \t126\ ``V'' \t127\ ``W'' \t130\ ``X'' \t131\ ``Y''
+.It \&132\ ``Z'' \t141\ ``a'' \t142\ ``b'' \t143\ ``c'' \t144\ ``d''
+.It \&145\ ``e'' \t146\ ``f'' \t147\ ``g'' \t150\ ``h'' \t151\ ``i''
+.It \&152\ ``j'' \t153\ ``k'' \t154\ ``l'' \t155\ ``m'' \t156\ ``n''
+.It \&157\ ``o'' \t160\ ``p'' \t161\ ``q'' \t162\ ``r'' \t163\ ``s''
+.It \&164\ ``t'' \t165\ ``u'' \t166\ ``v'' \t167\ ``w'' \t170\ ``x''
+.It \&171\ ``y'' \t172\ ``z''
+.El
 .Sh RETURN VALUES
 The
 .Fn isalpha
 .Sh RETURN VALUES
 The
 .Fn isalpha
index 9e88f9d..ef30196 100644 (file)
@@ -3,7 +3,7 @@
 .\"
 .\" %sccs.include.redist.man%
 .\"
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"     @(#)isascii.3  5.2 (Berkeley) %G%
+.\"     @(#)isascii.3  5.3 (Berkeley) %G%
 .\"
 .Dd 
 .Dt ISASCII 3
 .\"
 .Dd 
 .Dt ISASCII 3
@@ -20,13 +20,8 @@ The
 .Fn isascii
 function tests for an
 .Tn ASCII
 .Fn isascii
 function tests for an
 .Tn ASCII
-character, which is any character
-for which either
-.Xr iscntrl 3
-(character codes 000 through 037 and also including
-0177) or 
-.Xr isprint 3
-(character codes 040 through 0176) is true.
+character, which is any character with a value less than than or
+equal to 0177.
 .Sh SEE ALSO
 .Xr ctype 3 ,
 .Xr ascii 7
 .Sh SEE ALSO
 .Xr ctype 3 ,
 .Xr ascii 7
index 5a5eabe..d9cb968 100644 (file)
@@ -7,7 +7,7 @@
 .\"
 .\" %sccs.include.redist.man%
 .\"
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"     @(#)iscntrl.3  5.3 (Berkeley) %G%
+.\"     @(#)iscntrl.3  5.4 (Berkeley) %G%
 .\"
 .Dd 
 .Dt ISCNTRL 3
 .\"
 .Dd 
 .Dt ISCNTRL 3
 The
 .Fn iscntrl
 function tests for any control character.
 The
 .Fn iscntrl
 function tests for any control character.
+In the ASCII character set, this includes the following characters:
+.sp
+.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
+.It \&000\ nul \t001\ soh \t002\ stx \t003\ etx \t004\ eot
+.It \&005\ enq \t006\ ack \t007\ bel \t010\ bs \t011\ ht
+.It \&012\ nl \t013\ vt \t014\ np \t015\ cr \t016\ so
+.It \&017\ si \t020\ dle \t021\ dc1 \t022\ dc2 \t023\ dc3
+.It \&024\ dc4 \t025\ nak \t026\ syn \t027\ etb \t030\ can
+.It \&031\ em \t032\ sub \t033\ esc \t034\ fs \t035\ gs
+.It \&036\ rs \t037\ us \t177\ del
+.El
 .Sh RETURN VALUES
 The
 .Fn iscntrl
 .Sh RETURN VALUES
 The
 .Fn iscntrl
index 2faf23f..1f2fd10 100644 (file)
@@ -7,7 +7,7 @@
 .\"
 .\" %sccs.include.redist.man%
 .\"
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"     @(#)isdigit.3  5.3 (Berkeley) %G%
+.\"     @(#)isdigit.3  5.4 (Berkeley) %G%
 .\"
 .Dd 
 .Dt ISDIGIT 3
 .\"
 .Dd 
 .Dt ISDIGIT 3
 The
 .Fn isdigit
 function tests for any decimal-digit character.
 The
 .Fn isdigit
 function tests for any decimal-digit character.
+In the ASCII character set, this includes the following characters:
+.sp
+.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
+.It \&060\ ``0'' \t061\ ``1'' \t062\ ``2'' \t063\ ``3'' \t064\ ``4''
+.It \&065\ ``5'' \t066\ ``6'' \t067\ ``7'' \t070\ ``8'' \t071\ ``9''
+.El
 .Sh RETURN VALUES
 The
 .Fn isdigit
 .Sh RETURN VALUES
 The
 .Fn isdigit
index a9c6054..185b3d8 100644 (file)
@@ -7,7 +7,7 @@
 .\"
 .\" %sccs.include.redist.man%
 .\"
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"     @(#)isgraph.3  5.3 (Berkeley) %G%
+.\"     @(#)isgraph.3  5.4 (Berkeley) %G%
 .\"
 .Dd 
 .Dt ISGRAPH 3
 .\"
 .Dd 
 .Dt ISGRAPH 3
 .Sh DESCRIPTION
 The
 .Fn isgraph
 .Sh DESCRIPTION
 The
 .Fn isgraph
-function tests for any printing character except space (' ').
+function tests for any printing character except space.
+In the ASCII character set, this includes the following characters:
+.sp
+.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
+.It \&041\ ``!'' \t042\ ``"'' \t043\ ``#'' \t044\ ``$'' \t045\ ``%''
+.It \&046\ ``&'' \t047\ ``''' \t050\ ``('' \t051\ ``)'' \t052\ ``*''
+.It \&053\ ``+'' \t054\ ``,'' \t055\ ``-'' \t056\ ``.'' \t057\ ``/''
+.It \&060\ ``0'' \t061\ ``1'' \t062\ ``2'' \t063\ ``3'' \t064\ ``4''
+.It \&065\ ``5'' \t066\ ``6'' \t067\ ``7'' \t070\ ``8'' \t071\ ``9''
+.It \&072\ ``:'' \t073\ ``;'' \t074\ ``<'' \t075\ ``='' \t076\ ``>''
+.It \&077\ ``?'' \t100\ ``@'' \t101\ ``A'' \t102\ ``B'' \t103\ ``C''
+.It \&104\ ``D'' \t105\ ``E'' \t106\ ``F'' \t107\ ``G'' \t110\ ``H''
+.It \&111\ ``I'' \t112\ ``J'' \t113\ ``K'' \t114\ ``L'' \t115\ ``M''
+.It \&116\ ``N'' \t117\ ``O'' \t120\ ``P'' \t121\ ``Q'' \t122\ ``R''
+.It \&123\ ``S'' \t124\ ``T'' \t125\ ``U'' \t126\ ``V'' \t127\ ``W''
+.It \&130\ ``X'' \t131\ ``Y'' \t132\ ``Z'' \t133\ ``['' \t134\ ``\''
+.It \&135\ ``]'' \t136\ ``^'' \t137\ ``_'' \t140\ ```'' \t141\ ``a''
+.It \&142\ ``b'' \t143\ ``c'' \t144\ ``d'' \t145\ ``e'' \t146\ ``f''
+.It \&147\ ``g'' \t150\ ``h'' \t151\ ``i'' \t152\ ``j'' \t153\ ``k''
+.It \&154\ ``l'' \t155\ ``m'' \t156\ ``n'' \t157\ ``o'' \t160\ ``p''
+.It \&161\ ``q'' \t162\ ``r'' \t163\ ``s'' \t164\ ``t'' \t165\ ``u''
+.It \&166\ ``v'' \t167\ ``w'' \t170\ ``x'' \t171\ ``y'' \t172\ ``z''
+.It \&173\ ``{'' \t174\ ``|'' \t175\ ``}'' \t176\ ``~''
+.El
 .Sh RETURN VALUES
 The
 .Fn isgraph
 .Sh RETURN VALUES
 The
 .Fn isgraph
index 998927b..da76b28 100644 (file)
@@ -7,7 +7,7 @@
 .\"
 .\" %sccs.include.redist.man%
 .\"
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"     @(#)islower.3  5.3 (Berkeley) %G%
+.\"     @(#)islower.3  5.4 (Berkeley) %G%
 .\"
 .Dd 
 .Dt ISLOWER 3
 .\"
 .Dd 
 .Dt ISLOWER 3
 .Sh DESCRIPTION
 The
 .Fn islower
 .Sh DESCRIPTION
 The
 .Fn islower
-function tests for any lower-case letter
-.\" or any of an
-.\" implementation-defined set of characters
-for which none of
-.Xr iscntrl 3 ,
-.Xr isdigit 3 ,
-.Xr ispunct 3 ,
-or
-.Xr isspace 3
-is true.
-In the 
-.Em ``C''
-locale,
-.Fn islower
-returns true only for the characters defined as lower-case letters.
+function tests for any lower-case letters.
+In the ASCII character set, this includes the following characters:
+.sp
+.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
+.It \&141\ ``a'' \t142\ ``b'' \t143\ ``c'' \t144\ ``d'' \t145\ ``e''
+.It \&146\ ``f'' \t147\ ``g'' \t150\ ``h'' \t151\ ``i'' \t152\ ``j''
+.It \&153\ ``k'' \t154\ ``l'' \t155\ ``m'' \t156\ ``n'' \t157\ ``o''
+.It \&160\ ``p'' \t161\ ``q'' \t162\ ``r'' \t163\ ``s'' \t164\ ``t''
+.It \&165\ ``u'' \t166\ ``v'' \t167\ ``w'' \t170\ ``x'' \t171\ ``y''
+.It \&172\ ``z''
+.El
 .Sh RETURN VALUES
 The
 .Fn islower
 .Sh RETURN VALUES
 The
 .Fn islower
index 239ecb1..351dd8b 100644 (file)
@@ -7,7 +7,7 @@
 .\"
 .\" %sccs.include.redist.man%
 .\"
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"     @(#)isprint.3  5.3 (Berkeley) %G%
+.\"     @(#)isprint.3  5.4 (Berkeley) %G%
 .\"
 .Dd 
 .Dt ISPRINT 3
 .\"
 .Dd 
 .Dt ISPRINT 3
 The
 .Fn isprint
 function tests for any printing character including space (' ').
 The
 .Fn isprint
 function tests for any printing character including space (' ').
+In the ASCII character set, this includes the following characters:
+.sp
+.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
+.It \&040\ sp \t041\ ``!'' \t042\ ``"'' \t043\ ``#'' \t044\ ``$''
+.It \&045\ ``%'' \t046\ ``&'' \t047\ ``''' \t050\ ``('' \t051\ ``)''
+.It \&052\ ``*'' \t053\ ``+'' \t054\ ``,'' \t055\ ``-'' \t056\ ``.''
+.It \&057\ ``/'' \t060\ ``0'' \t061\ ``1'' \t062\ ``2'' \t063\ ``3''
+.It \&064\ ``4'' \t065\ ``5'' \t066\ ``6'' \t067\ ``7'' \t070\ ``8''
+.It \&071\ ``9'' \t072\ ``:'' \t073\ ``;'' \t074\ ``<'' \t075\ ``=''
+.It \&076\ ``>'' \t077\ ``?'' \t100\ ``@'' \t101\ ``A'' \t102\ ``B''
+.It \&103\ ``C'' \t104\ ``D'' \t105\ ``E'' \t106\ ``F'' \t107\ ``G''
+.It \&110\ ``H'' \t111\ ``I'' \t112\ ``J'' \t113\ ``K'' \t114\ ``L''
+.It \&115\ ``M'' \t116\ ``N'' \t117\ ``O'' \t120\ ``P'' \t121\ ``Q''
+.It \&122\ ``R'' \t123\ ``S'' \t124\ ``T'' \t125\ ``U'' \t126\ ``V''
+.It \&127\ ``W'' \t130\ ``X'' \t131\ ``Y'' \t132\ ``Z'' \t133\ ``[''
+.It \&134\ ``\'' \t135\ ``]'' \t136\ ``^'' \t137\ ``_'' \t140\ ```''
+.It \&141\ ``a'' \t142\ ``b'' \t143\ ``c'' \t144\ ``d'' \t145\ ``e''
+.It \&146\ ``f'' \t147\ ``g'' \t150\ ``h'' \t151\ ``i'' \t152\ ``j''
+.It \&153\ ``k'' \t154\ ``l'' \t155\ ``m'' \t156\ ``n'' \t157\ ``o''
+.It \&160\ ``p'' \t161\ ``q'' \t162\ ``r'' \t163\ ``s'' \t164\ ``t''
+.It \&165\ ``u'' \t166\ ``v'' \t167\ ``w'' \t170\ ``x'' \t171\ ``y''
+.It \&172\ ``z'' \t173\ ``{'' \t174\ ``|'' \t175\ ``}'' \t176\ ``~''
+.El
 .Sh RETURN VALUES
 The
 .Fn isprint
 .Sh RETURN VALUES
 The
 .Fn isprint
index 1101b49..3c21f75 100644 (file)
@@ -7,7 +7,7 @@
 .\"
 .\" %sccs.include.redist.man%
 .\"
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"    @(#)ispunct.3   5.3 (Berkeley) %G%
+.\"    @(#)ispunct.3   5.4 (Berkeley) %G%
 .\"
 .Dd 
 .Dt ISPUNCT 3
 .\"
 .Dd 
 .Dt ISPUNCT 3
 .Sh DESCRIPTION
 The
 .Fn ispunct
 .Sh DESCRIPTION
 The
 .Fn ispunct
-function tests for any printing character except space (' ') or a
+function tests for any printing character except for space (' ') or a
 character for which
 .Xr isalnum 3
 is true.
 character for which
 .Xr isalnum 3
 is true.
+In the ASCII character set, this includes the following characters:
+.sp
+.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
+.It \&041\ ``!'' \t042\ ``"'' \t043\ ``#'' \t044\ ``$'' \t045\ ``%''
+.It \&046\ ``&'' \t047\ ``''' \t050\ ``('' \t051\ ``)'' \t052\ ``*''
+.It \&053\ ``+'' \t054\ ``,'' \t055\ ``-'' \t056\ ``.'' \t057\ ``/''
+.It \&072\ ``:'' \t073\ ``;'' \t074\ ``<'' \t075\ ``='' \t076\ ``>''
+.It \&077\ ``?'' \t100\ ``@'' \t133\ ``['' \t134\ ``\'' \t135\ ``]''
+.It \&136\ ``^'' \t137\ ``_'' \t140\ ```'' \t173\ ``{'' \t174\ ``|''
+.It \&175\ ``}'' \t176\ ``~''
+.El
 .Sh RETURN VALUES
 The
 .Fn ispunct
 .Sh RETURN VALUES
 The
 .Fn ispunct
index 0b801cf..890aaf5 100644 (file)
@@ -7,7 +7,7 @@
 .\"
 .\" %sccs.include.redist.man%
 .\"
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"     @(#)isspace.3  5.4 (Berkeley) %G%
+.\"     @(#)isspace.3  5.5 (Berkeley) %G%
 .\"
 .Dd 
 .Dt ISSPACE 3
 .\"
 .Dd 
 .Dt ISSPACE 3
 .Sh DESCRIPTION
 The
 .Fn isspace
 .Sh DESCRIPTION
 The
 .Fn isspace
-function tests for the standard white-space characters
-.\" or for any
-.\" of an implementation-defined set of characters
-for which
-.Xr isalnum 3
-is false.
-The standard white-space characters are the following:
-.Pp
-.Bl -tag -width xxxxx -offset indent -compact
-.It Sq \0
-Space character.
-.It Li \ef
-Form feed.
-.It Li \en
-New-line.
-.It Li \er
-Carriage return.
-.It Li \et
-Horizontal tab.
-.It Li \ev
-And vertical tab.
+function tests for the standard white-space characters.
+In the ASCII character set, this includes the following characters:
+.sp
+.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
+.It \&011\ ht \t012\ nl \t013\ vt \t014\ np \t015\ cr
+.It \&040\ sp
 .El
 .El
-.Pp
-In the 
-.Em ``C''
-locale,
-.Fn isspace
-returns true only for the standard white-space characters.
 .Sh RETURN VALUES
 The
 .Fn isspace
 .Sh RETURN VALUES
 The
 .Fn isspace
index 205e0d3..1aacb0d 100644 (file)
@@ -7,7 +7,7 @@
 .\"
 .\" %sccs.include.redist.man%
 .\"
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"     @(#)isupper.3  5.3 (Berkeley) %G%
+.\"     @(#)isupper.3  5.4 (Berkeley) %G%
 .\"
 .Dd 
 .Dt ISUPPER 3
 .\"
 .Dd 
 .Dt ISUPPER 3
 .Sh DESCRIPTION
 The
 .Fn isupper
 .Sh DESCRIPTION
 The
 .Fn isupper
-function tests for any upper-case letter or any of an
-implementation-defined set of characters for which none of
-.Xr iscntrl 3 ,
-.Xr isdigit 3 ,
-.Xr ispunct 3 ,
-or
-.Xr isspace 3
-is true.
-In the 
-.Em ``C''
-locale,
-.Fn isupper
-returns true only for the characters defined as upper-case letters.
+function tests for any upper-case letter.
+In the ASCII character set, this includes the following characters:
+.sp
+.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
+.It \&101\ ``A'' \t102\ ``B'' \t103\ ``C'' \t104\ ``D'' \t105\ ``E''
+.It \&106\ ``F'' \t107\ ``G'' \t110\ ``H'' \t111\ ``I'' \t112\ ``J''
+.It \&113\ ``K'' \t114\ ``L'' \t115\ ``M'' \t116\ ``N'' \t117\ ``O''
+.It \&120\ ``P'' \t121\ ``Q'' \t122\ ``R'' \t123\ ``S'' \t124\ ``T''
+.It \&125\ ``U'' \t126\ ``V'' \t127\ ``W'' \t130\ ``X'' \t131\ ``Y''
+.It \&132\ ``Z''
+.El
 .Sh RETURN VALUES
 The
 .Fn isupper
 .Sh RETURN VALUES
 The
 .Fn isupper
index df7f8aa..c59c036 100644 (file)
@@ -7,7 +7,7 @@
 .\"
 .\" %sccs.include.redist.man%
 .\"
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"     @(#)isxdigit.3 5.3 (Berkeley) %G%
+.\"     @(#)isxdigit.3 5.4 (Berkeley) %G%
 .\"
 .Dd 
 .Dt ISXDIGIT 3
 .\"
 .Dd 
 .Dt ISXDIGIT 3
 The
 .Fn isxdigit
 function tests for any hexadecimal-digit character.
 The
 .Fn isxdigit
 function tests for any hexadecimal-digit character.
+In the ASCII character set, this includes the following characters:
+.sp
+.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
+.It \&060\ ``0'' \t061\ ``1'' \t062\ ``2'' \t063\ ``3'' \t064\ ``4''
+.It \&065\ ``5'' \t066\ ``6'' \t067\ ``7'' \t070\ ``8'' \t071\ ``9''
+.It \&101\ ``A'' \t102\ ``B'' \t103\ ``C'' \t104\ ``D'' \t105\ ``E''
+.It \&106\ ``F'' \t141\ ``a'' \t142\ ``b'' \t143\ ``c'' \t144\ ``d''
+.It \&145\ ``e'' \t146\ ``f''
+.El
 .Sh RETURN VALUES
 The
 .Fn isxdigit
 .Sh RETURN VALUES
 The
 .Fn isxdigit