Home | History | Annotate | Download | only in bits

Lines Matching refs:mask

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