mirror of
				https://github.com/RetroShare/RetroShare.git
				synced 2025-10-31 14:49:14 -04:00 
			
		
		
		
	 3be22536df
			
		
	
	
		3be22536df
		
	
	
	
	
		
			
			git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5953 b45a01b8-16f6-495d-af2f-9b41ad6348cc
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			301 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 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;
 | |
| }
 |