D | regex2.h | 126 #define CHadd(cs, c) ((cs)->ptr[(uch)(c)] |= (cs)->mask, (cs)->hash += (uch)(c)) argument 127 #define CHsub(cs, c) ((cs)->ptr[(uch)(c)] &= ~(cs)->mask, (cs)->hash -= (uch)(c)) argument 128 #define CHIN(cs, c) ((cs)->ptr[(uch)(c)] & (cs)->mask) argument 129 #define MCadd(p, cs, cp) mcadd(p, cs, cp) /* regcomp() internal fns */ argument 130 #define MCsub(p, cs, cp) mcsub(p, cs, cp) argument 131 #define MCin(p, cs, cp) mcin(p, cs, cp) argument
|