8 int e
= regcomp(&r
, "xy\\{4,5,7\\}zabc", 0);
10 regerror(e
, &r
, buf
, sizeof (buf
));
11 printf ("e = %d (%s)\n", e
, buf
);
12 int res
= e
!= REG_BADBR
;
14 e
= regcomp(&r
, "xy\\{4,5a\\}zabc", 0);
15 regerror(e
, &r
, buf
, sizeof (buf
));
16 printf ("e = %d (%s)\n", e
, buf
);
17 res
|= e
!= REG_BADBR
;
22 #define TEST_FUNCTION do_test ()
23 #include "../test-skeleton.c"