mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
21 lines
301 B
C
21 lines
301 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int stack[1024];
|
||
|
int stackp= -1;
|
||
|
int var= 0;
|
||
|
int vars[26];
|
||
|
|
||
|
int push(int n) { return stack[++stackp]= n; }
|
||
|
int pop(void) { return stack[stackp--]; }
|
||
|
int top(void) { return stack[stackp]; }
|
||
|
|
||
|
#include "dcv.peg.c"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
while (yyparse());
|
||
|
|
||
|
return 0;
|
||
|
}
|