TacOS  0.2
 Tout Structures de données Fichiers Fonctions Variables Définitions de type Énumérations Macros
ctype.h
1 
29 #ifndef _CTYPE_H_
30 #define _CTYPE_H_
31 
32 #include <sys/cdefs.h>
33 
34 __BEGIN_DECLS
35 
46 int isalnum(int c) __attribute__((const));
47 
60 int isalpha(int c) __attribute__((const));
61 
73 int isblank(int c) __attribute__((const));
74 
84 int iscntrl(int c) __attribute__((const));
85 
93 int isdigit(int c) __attribute__((const));
94 
102 int islower(int c) __attribute__((const));
103 
111 int isprint(int c) __attribute__((const));
112 
124 int ispunct(int c) __attribute__((const));
125 
138 int isspace(int c) __attribute__((const));
139 
149 int isupper(int c) __attribute__((const));
150 
161 int isxdigit(int c) __attribute__((const));
162 
172 int tolower(int c) __attribute__((const));
173 
183 int toupper(int c) __attribute__((const));
184 
185 __END_DECLS
186 
187 #endif