Searched refs:_ctype_ (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dctype.h39 extern char _ctype_[];
41 #define isalpha(c) ((_ctype_+1)[c]&(_U|_L))
42 #define isupper(c) ((_ctype_+1)[c]&_U)
43 #define islower(c) ((_ctype_+1)[c]&_L)
44 #define isdigit(c) ((_ctype_+1)[c]&_N)
45 #define isxdigit(c) ((_ctype_+1)[c]&_X)
46 #define isspace(c) ((_ctype_+1)[c]&_S)
47 #define ispunct(c) ((_ctype_+1)[c]&_P)
48 #define isalnum(c) ((_ctype_+1)[c]&(_U|_L|_N))
49 #define isprint(c) ((_ctype_
[all...]
/illumos-gate/usr/src/lib/libbc/inc/5include/
H A Dctype.h64 #define isalnum(c) ((_ctype_ + 1)[c] & (_U | _L | _N))
65 #define isalpha(c) ((_ctype_ + 1)[c] & (_U | _L))
69 #define iscntrl(c) ((_ctype_ + 1)[c] & _C)
70 #define isdigit(c) ((_ctype_ + 1)[c] & _N)
71 #define isgraph(c) ((_ctype_ + 1)[c] & (_P | _U | _L | _N))
72 #define islower(c) ((_ctype_ + 1)[c] & _L)
73 #define isprint(c) ((_ctype_ + 1)[c] & (_P | _U | _L | _N | _B))
74 #define ispunct(c) ((_ctype_ + 1)[c] & _P)
75 #define isspace(c) ((_ctype_ + 1)[c] & _S)
76 #define isupper(c) ((_ctype_
[all...]
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dctype_.c29 char _ctype_[] = { 0, variable
92 return((_ctype_+1)[c]&(_U|_L));
98 return((_ctype_+1)[c]&_U);
104 return((_ctype_+1)[c]&_L);
110 return((_ctype_+1)[c]&_N);
116 return((_ctype_+1)[c]&_X);
123 return((_ctype_+1)[c]&_S);
130 return((_ctype_+1)[c]&_P);
137 return((_ctype_+1)[c]&(_U|_L|_N));
144 return((_ctype_
[all...]
H A Dsetlocale.c279 (void) memcpy(_ctype_, my_ctype, CTYPE_SIZE/2);

Completed in 45 milliseconds