Home | History | Annotate | Download | only in bits

Lines Matching refs:mask

60     // on the mask type. Because of this, we don't use an enum.
61 typedef char mask;
62 static const mask upper = _U;
63 static const mask lower = _L;
64 static const mask alpha = _U | _L;
65 static const mask digit = _N;
66 static const mask xdigit = _X | _N;
67 static const mask space = _S;
68 static const mask print = _P | _U | _L | _N | _B;
69 static const mask graph = _P | _U | _L | _N;
70 static const mask cntrl = _C;
71 static const mask punct = _P;
72 static const mask alnum = _U | _L | _N;