diff options
| author | Guy Helmer <ghelmer@FreeBSD.org> | 1999-04-29 21:54:20 +0000 |
|---|---|---|
| committer | Guy Helmer <ghelmer@FreeBSD.org> | 1999-04-29 21:54:20 +0000 |
| commit | 1e1d43cd381a1df48c3a60c432a920d7ce349695 (patch) | |
| tree | 24dfbbf7d5829710316c4d7d0f591efc8230ff6d /lib/libc | |
| parent | 2693c8b95a6621665262f0809e1f5049908f1b45 (diff) | |
Notes
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/locale/ctype.3 | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/lib/libc/locale/ctype.3 b/lib/libc/locale/ctype.3 index 1493cc3bbe12..0fb5e13d7ba1 100644 --- a/lib/libc/locale/ctype.3 +++ b/lib/libc/locale/ctype.3 @@ -42,15 +42,21 @@ .Nm iscntrl , .Nm isdigit , .Nm isgraph , +.Nm ishexnumber , +.Nm isideogram , .Nm islower , +.Nm isnumber , +.Nm isphonogram , .Nm isprint , .Nm ispunct , +.Nm isrune , .Nm isspace , +.Nm isspecial , .Nm isupper , .Nm isxdigit , -.Nm toascii +.Nm toascii , .Nm tolower , -.Nm toupper , +.Nm toupper .Nd character classification macros .Sh SYNOPSIS .Fd #include <ctype.h> @@ -67,12 +73,24 @@ .Ft int .Fn isgraph "int c" .Ft int +.Fn ishexnumber "int c" +.Ft int +.Fn isideogram "int c" +.Ft int .Fn islower "int c" .Ft int +.Fn isnumber "int c" +.Ft int +.Fn isphonogram "int c" +.Ft int +.Fn isspecial "int c" +.Ft int .Fn isprint "int c" .Ft int .Fn ispunct "int c" .Ft int +.Fn isrune "int c" +.Ft int .Fn isspace "int c" .Ft int .Fn isupper "int c" |
