localpeg.c 172 B

1234567891011121314
  1. #include <stdio.h>
  2. #define YY_CTX_LOCAL
  3. #include "test.peg.c"
  4. int main()
  5. {
  6. yycontext ctx;
  7. memset(&ctx, 0, sizeof(yycontext));
  8. while (yyparse(&ctx));
  9. return 0;
  10. }