diff options
author | bde <bde@FreeBSD.org> | 2002-01-11 15:15:17 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2002-01-11 15:15:17 +0000 |
commit | 7ae245ff236bb007dfad8ff689718682565358f0 (patch) | |
tree | b13f0086a56c132d73a9f37cfb86260c9781d688 | |
parent | f5ef8e1b2c57150af52965e49bf130934af02e13 (diff) | |
download | FreeBSD-src-7ae245ff236bb007dfad8ff689718682565358f0.zip FreeBSD-src-7ae245ff236bb007dfad8ff689718682565358f0.tar.gz |
Fixed unsorting of almost all lists in previous commit.
Removed assertion that isblank() is in C99 here too.
-rw-r--r-- | lib/libc/locale/ctype.3 | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/lib/libc/locale/ctype.3 b/lib/libc/locale/ctype.3 index 60d995d..dd110f2 100644 --- a/lib/libc/locale/ctype.3 +++ b/lib/libc/locale/ctype.3 @@ -36,6 +36,7 @@ .Dt CTYPE 3 .Os .Sh NAME +.Nm digittoint , .Nm isalnum , .Nm isalpha , .Nm isascii , @@ -55,7 +56,6 @@ .Nm isspecial , .Nm isupper , .Nm isxdigit , -.Nm digittoint , .Nm toascii , .Nm tolower , .Nm toupper @@ -65,6 +65,8 @@ .Sh SYNOPSIS .In ctype.h .Ft int +.Fn digittoint "int c" +.Ft int .Fn isalnum "int c" .Ft int .Fn isalpha "int c" @@ -101,8 +103,6 @@ .Ft int .Fn isxdigit "int c" .Ft int -.Fn digittoint "int c" -.Ft int .Fn toascii "int c" .Ft int .Fn tolower "int c" @@ -116,6 +116,7 @@ They are available as macros, defined in the include file or as true functions in the C library. See the specific manual pages for more information. .Sh SEE ALSO +.Xr digittoint 3 , .Xr isalnum 3 , .Xr isalpha 3 , .Xr isascii 3 , @@ -129,7 +130,6 @@ See the specific manual pages for more information. .Xr isspace 3 , .Xr isupper 3 , .Xr isxdigit 3 , -.Xr digittoint 3 , .Xr toascii 3 , .Xr tolower 3 , .Xr toupper 3 , @@ -148,6 +148,3 @@ and .Fn toascii , conform to .St -isoC . -.Fn isblank -conforms to -.St -isoC-99 . |