home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
splint3s.zip
/
splint-3.0.1.6
/
imports
/
ctype.lcl
< prev
next >
Wrap
Text File
|
2000-06-12
|
936b
|
21 lines
/*
** ctype.h
*/
| int : bool | isalnum (| int : char | c ) { ensures true; }
| int : bool | isalpha (| int : char | c ) { ensures true; }
| int : bool | isascii (| int : char | c ) { ensures true; }
| int : bool | iscntrl (| int : char | c ) { ensures true; }
| int : bool | isdigit (| int : char | c ) { ensures true; }
| int : bool | isgraph (| int : char | c ) { ensures true; }
| int : bool | islower (| int : char | c ) { ensures true; }
| int : bool | isprint (| int : char | c ) { ensures true; }
| int : bool | ispunct (| int : char | c ) { ensures true; }
| int : bool | isspace (| int : char | c ) { ensures true; }
| int : bool | isupper (| int : char | c ) { ensures true; }
| int : bool | isxdigit (| int : char | c ) { ensures true; }
| int : char | toascii (| int : char | c ) { ensures true; }
| int : char | tolower (| int : char | c ) { ensures true; }
| int : char | toupper (| int : char | c ) { ensures true; }