* added compilers lcc and bcc (linux86)
[mascara-docs.git] / compilers / lcc-4.2 / include / alpha / osf / ctype.h
blob02e0131885a51674b9b050ed1a0b80437290d904
1 #ifndef __CTYPE
2 #define __CTYPE
4 extern int isalnum(int);
5 extern int isalpha(int);
6 extern int iscntrl(int);
7 extern int isdigit(int);
8 extern int isgraph(int);
9 extern int islower(int);
10 extern int isprint(int);
11 extern int ispunct(int);
12 extern int isspace(int);
13 extern int isupper(int);
14 extern int isxdigit(int);
15 extern int tolower(int);
16 extern int toupper(int);
18 #define __U 01
19 #define __L 02
20 #define __N 04
21 #define __S 010
22 #define __P 020
23 #define __C 040
25 #endif /* __CTYPE */