9srv Manual Collection/plan9/ctype(2) | 9srv Manual Collection/plan9/ctype(2) |
---|
isalpha(c)
isupper(c)
islower(c)
isdigit(c)
isxdigit(c)
isalnum(c)
isspace(c)
ispunct(c)
isprint(c)
isgraph(c)
iscntrl(c)
isascii(c)
_toupper(c)
_tolower(c)
toupper(c)
tolower(c)
toascii(c)
Toascii is not a classification macro; it converts its argument to ASCII range by anding with 0x7F.
If c is an upper case letter, tolower returns the lower case version of the character; otherwise it returns the original character. Toupper is similar, returning the upper case version of a character or the original character. Tolower and toupper are functions; _tolower and _toupper are corresponding macros which should only be used when it is known that the argument is upper case or lower case, respectively.
9srv Manual Collection/plan9/ctype(2) | Rev: Sun Dec 02 23:42:17 GMT 2007 |