Home | History | Annotate | Download | only in bits

Lines Matching refs:mask

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