Subversion Repositories configs

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 - 1
 
2
/* /usr/include/ctype.h */
3
 
4
 
5
void*   __ctype_b_loc(void);
6
void*   __ctype_tolower_loc(void);
7
void*   __ctype_toupper_loc (void);
8
 
9
 
10
int isctype(int c, int mask);
11
int isascii(int c);
12
int toascii(int c);
13
 
14
 
15
int tolower(int c);
16
int toupper(int c);
17
int __tolower_l(int c, __locale_t l);
18
int tolower_l(int c, __locale_t l);
19
int __toupper_l(int c, __locale_t l);
20
int toupper_l(int c, __locale_t l);