home: hub: minipeg

ref: aa1e32f32330a6893ba1661088a6c354c2564d19
dir: /examples/localpeg.c/

View raw version
#include <stdio.h>

#define YY_CTX_LOCAL

#include "test.peg.c"

int main()
{
  yycontext ctx;
  memset(&ctx, 0, sizeof(yycontext));
  while (yyparse(&ctx));
  return 0;
}