Home
last modified time | relevance | path

Searched refs:__istype (Results 1 – 3 of 3) sorted by relevance

/original-bsd/include/
H A Dctype.h39 #define isalpha(c) __istype((c), _A)
40 #define iscntrl(c) __istype((c), _C)
42 #define isgraph(c) __istype((c), _G)
53 #define digittoint(c) __istype((c), 0xFF)
54 #define isideogram(c) __istype((c), _I)
55 #define isphonogram(c) __istype((c), _T)
56 #define isspecial(c) __istype((c), _Q)
57 #define isblank(c) __istype((c), _B)
59 #define isnumber(c) __istype((c), _D)
60 #define ishexnumber(c) __istype((c), _X)
[all …]
/original-bsd/lib/libc/locale/
H A Disctype.c28 return(__istype((c), (_A|_D)));
36 return (__istype((c), _A));
52 return (__istype((c), _B));
60 return (__istype((c), _C));
76 return (__istype((c), _G));
84 return (__istype((c), _L));
92 return (__istype((c), _R));
100 return (__istype((c), _P));
108 return (__istype((c), _S));
116 return (__istype((c), _U));
H A Drune.c276 __istype(c, f) in __istype() function