Searched refs:l (Results 1 – 3 of 3) sorted by relevance
/ctype/ |
A D | ctype.h | 304 # define isalnum_l(c,l) __isalnum_l ((c), (l)) argument 305 # define isalpha_l(c,l) __isalpha_l ((c), (l)) argument 306 # define iscntrl_l(c,l) __iscntrl_l ((c), (l)) argument 307 # define isdigit_l(c,l) __isdigit_l ((c), (l)) argument 308 # define islower_l(c,l) __islower_l ((c), (l)) argument 309 # define isgraph_l(c,l) __isgraph_l ((c), (l)) argument 310 # define isprint_l(c,l) __isprint_l ((c), (l)) argument 311 # define ispunct_l(c,l) __ispunct_l ((c), (l)) argument 312 # define isspace_l(c,l) __isspace_l ((c), (l)) argument 313 # define isupper_l(c,l) __isupper_l ((c), (l)) argument [all …]
|
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_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 8 milliseconds