VaninVM/VaninVM/ReturnStack.c

20 lines
No EOL
233 B
C

#include <malloc.h>
#include "ReturnStack.h"
void push_ret(int num)
{
RStack[rp++] = num;
}
int pop_ret()
{
int num = RStack[--rp];
return num;
}
int initRStack(int size)
{
RStack = (int*)calloc(1, size);
rp = 0;
return 0;
}