added ctype.h notation
This commit is contained in:
parent
291f8fbd73
commit
8acf1fae9a
3 changed files with 13 additions and 240 deletions
13
unix_programming_environment/ctype.txt
Normal file
13
unix_programming_environment/ctype.txt
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
----------------------------- Table 6.1 -----------------------------
|
||||
|
||||
isalpha(c) alphabetic: a-z A-Z
|
||||
isupper(c) upper case: A-Z
|
||||
islower(c) lower case: a-z
|
||||
isdigit(c) digit: 0-9
|
||||
isxdigit(c) hexadecimal digit: 0-9 a-f A-F
|
||||
isalnum(c) alphabetic or digit
|
||||
isspace(c) blank, tab, newline, vertical tab, formfeed, return
|
||||
ispunct(c) not alphanumeric or control or space
|
||||
isprint(c) printable: any graphic
|
||||
iscntrl(c) control character: 0 <= c < 040 "" c == 0177
|
||||
isascii(c) ASCII character: 0 <= c <= 0177
|
||||
Loading…
Add table
Add a link
Reference in a new issue