RetroShare/supportlibs/pegmarkdown/peg-0.1.9/examples/localctx.c
2012-12-09 12:12:57 +00:00

14 lines
172 B
C

#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;
}