15 while (! feof (stdin
))
17 ssize_t n
= getline (&buf
, &len
, stdin
);
20 if (buf
[n
- 1] == '\n')
24 int rc
= regcomp (®ex
, buf
, REG_EXTENDED
);
26 printf ("%s: Error %d (expected)\n", buf
, rc
);
29 printf ("%s: succeeded !\n", buf
);