Home
last modified time | relevance | path

Searched refs:__isctype_l (Results 1 – 4 of 4) sorted by relevance

/glibc-2.36/ctype/
Dctype.h241 # define __isctype_l(c, type, locale) \ macro
285 # define __isalnum_l(c,l) __isctype_l((c), _ISalnum, (l))
286 # define __isalpha_l(c,l) __isctype_l((c), _ISalpha, (l))
287 # define __iscntrl_l(c,l) __isctype_l((c), _IScntrl, (l))
288 # define __isdigit_l(c,l) __isctype_l((c), _ISdigit, (l))
289 # define __islower_l(c,l) __isctype_l((c), _ISlower, (l))
290 # define __isgraph_l(c,l) __isctype_l((c), _ISgraph, (l))
291 # define __isprint_l(c,l) __isctype_l((c), _ISprint, (l))
292 # define __ispunct_l(c,l) __isctype_l((c), _ISpunct, (l))
293 # define __isspace_l(c,l) __isctype_l((c), _ISspace, (l))
[all …]
Dctype-c99_l.c25 return __isctype_l (c, _ISblank, l); in __isblank_l()
Dctype_l.c24 int __##name (int c, locale_t l) { return __isctype_l (c, type, l); } \
/glibc-2.36/ChangeLog.old/
DChangeLog.1111679 * ctype/ctype.h (__isctype_l): Define even if not __OPTIMIZE__