diff options
author | tjr <tjr@FreeBSD.org> | 2005-07-17 04:11:06 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2005-07-17 04:11:06 +0000 |
commit | 016c317723b138a4f4d33dbf643bf3972263f899 (patch) | |
tree | 0084b0f36a0e6e42a52306a9b56e518370344532 /lib/libc/locale/iscntrl.3 | |
parent | 111bf5f2adbdb502f39bba488b8fdf250b4a92c9 (diff) | |
download | FreeBSD-src-016c317723b138a4f4d33dbf643bf3972263f899.zip FreeBSD-src-016c317723b138a4f4d33dbf643bf3972263f899.tar.gz |
Remove confusing "single C char locales" phrase; arguments to these
functions and must now be either an unsigned char or EOF, regardless of
locale.
Diffstat (limited to 'lib/libc/locale/iscntrl.3')
-rw-r--r-- | lib/libc/locale/iscntrl.3 | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/lib/libc/locale/iscntrl.3 b/lib/libc/locale/iscntrl.3 index 8e1e4e4..25e8954 100644 --- a/lib/libc/locale/iscntrl.3 +++ b/lib/libc/locale/iscntrl.3 @@ -36,7 +36,7 @@ .\" @(#)iscntrl.3 8.1 (Berkeley) 6/4/93 .\" $FreeBSD$ .\" -.Dd August 21, 2004 +.Dd July 17, 2005 .Dt ISCNTRL 3 .Os .Sh NAME @@ -52,15 +52,11 @@ The .Fn iscntrl function tests for any control character. -For single C -.Va char Ns s -locales (see -.Xr multibyte 3 ) -the value of the argument is -representable as an -.Li unsigned char +The value of the argument must be representable as an +.Vt unsigned char or the value of .Dv EOF . +.Pp In the ASCII character set, this includes the following characters (with their numeric values shown in octal): .Pp @@ -91,7 +87,6 @@ function should be used instead. .Sh SEE ALSO .Xr ctype 3 , .Xr iswcntrl 3 , -.Xr multibyte 3 , .Xr ascii 7 .Sh STANDARDS The |