accept.c 114 B

123456789101112
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include "accept.peg.c"
  4. int main()
  5. {
  6. while (yyparse());
  7. return 0;
  8. }