Searched refs:c (Results 1 – 7 of 7) sorted by relevance
/ctype/ |
A D | ctype.h | 189 # define isalnum(c) __isctype((c), _ISalnum) in __isctype_f() 190 # define isalpha(c) __isctype((c), _ISalpha) in __isctype_f() 191 # define iscntrl(c) __isctype((c), _IScntrl) in __isctype_f() 192 # define isdigit(c) __isctype((c), _ISdigit) in __isctype_f() 193 # define islower(c) __isctype((c), _ISlower) in __isctype_f() 194 # define isgraph(c) __isctype((c), _ISgraph) in __isctype_f() 195 # define isprint(c) __isctype((c), _ISprint) in __isctype_f() 220 # define tolower(c) __tobody (c, tolower, *__ctype_tolower_loc (), (c)) argument 221 # define toupper(c) __tobody (c, toupper, *__ctype_toupper_loc (), (c)) argument 225 # define isascii(c) __isascii (c) argument [all …]
|
A D | test_ctype.c | 23 #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') argument 24 #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) argument 31 print_char (unsigned char c) in print_char() argument 33 printf("%d/", (int) c); in print_char() 34 if (isgraph(c)) in print_char() 35 printf("'%c'", c); in print_char() 37 printf("'\\%.3o'", c); in print_char() 43 unsigned short int c; in main() local 62 for (c = 0; c <= UCHAR_MAX; ++c) in main() 64 print_char (c); in main() [all …]
|
A D | ctype-extn.c | 29 _tolower (int c) in _tolower() argument 31 return __ctype_tolower[c]; in _tolower() 34 _toupper (int c) in _toupper() argument 36 return __ctype_toupper[c]; in _toupper() 40 toascii (int c) in toascii() argument 42 return __toascii (c); in toascii() 47 isascii (int c) in weak_alias() 49 return __isascii (c); in weak_alias()
|
A D | ctype.c | 24 int name (int c) { return __isctype (c, type); } 44 tolower (int c) in func() 46 return c >= -128 && c < 256 ? __ctype_tolower[c] : c; in func() 51 toupper (int c) in libc_hidden_def() 53 return c >= -128 && c < 256 ? __ctype_toupper[c] : c; in libc_hidden_def()
|
A D | ctype_l.c | 24 int __##name (int c, locale_t l) { return __isctype_l (c, type, l); } \ 40 (__tolower_l) (int c, locale_t l) in func() 42 return l->__ctype_tolower[c]; in func() 47 (__toupper_l) (int c, locale_t l) in weak_alias() 49 return l->__ctype_toupper[c]; in weak_alias()
|
A D | ctype-c99.c | 23 isblank (int c) in isblank() argument 25 return __isctype (c, _ISblank); in isblank()
|
A D | ctype-c99_l.c | 23 __isblank_l (int c, locale_t l) in __isblank_l() argument 25 return __isctype_l (c, _ISblank, l); in __isblank_l()
|
Completed in 12 milliseconds