Files
CS3841/01-StackMachine/testcases/tc4.c
p-w-rs 7bb91e666d stuff
2022-09-07 11:18:56 -05:00

15 lines
184 B
C

#include <stdio.h>
#include "stackm.h"
void doPop(stackm* s)
{
printf("Pop Ret: %d\n", smPop(s));
}
int main() {
stackm mystack;
smInit(&mystack);
doPop(&mystack);
return 0;
}