home: hub: minipeg

ref: 6962d300a10351dcc545446cd1f2a902661d8cca
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;
}