Home | History | Annotate | Download | only in regex

Lines Matching defs:should

250 	char *should[NSHOULD];
276 fprintf(stderr, "%d: %s should have given REG_%s\n",
309 fprintf(stderr, "%d: %s exec should have failed\n",
327 should[i] = NULL;
328 nshould = split(f4, &should[1], NSHOULD-1, ",");
331 should[1] = ∅
334 grump = check(f2, subs[i], should[i]);
439 check(char *str, regmatch_t sub, char *should)
447 if (should != NULL && strcmp(should, "-") == 0)
448 should = NULL;
449 if (should != NULL && should[0] == '@') {
450 at = should + 1;
451 should = ∅
466 if (should == NULL)
485 if (should == NULL) {
491 shlen = (int)strlen(should);
492 if (len != shlen || strncmp(p, should, (size_t)shlen) != 0) {