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

18 lines
234 B
C

#include <stdio.h>
#include <stdlib.h>
int stack[1024];
int stackp= -1;
int push(int n) { return stack[++stackp]= n; }
int pop(void) { return stack[stackp--]; }
#include "dc.peg.c"
int main()
{
while (yyparse());
return 0;
}