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

18 lines
285 B
C

#include <stdio.h>
#define YY_INPUT(buf, result, max) \
{ \
int c= getchar(); \
result= (EOF == c) ? 0 : (*(buf)= c, 1); \
if (EOF != c) printf("<%c>\n", c); \
}
#include "left.peg.c"
int main()
{
printf(yyparse() ? "success\n" : "failure\n");
return 0;
}