Home | History | Annotate | Download | only in bits

Lines Matching refs:mask

42     // on the mask type. Because of this, we don't use an enum.
43 typedef char mask;
44 static const mask upper = _U;
45 static const mask lower = _L;
46 static const mask alpha = _U | _L;
47 static const mask digit = _N;
48 static const mask xdigit = _X | _N;
49 static const mask space = _S;
50 static const mask print = _P | _U | _L | _N | _B;
51 static const mask graph = _P | _U | _L | _N;
52 static const mask cntrl = _C;
53 static const mask punct = _P;
54 static const mask alnum = _U | _L | _N;