Add README
[word_lang.git] / stack.h
blob83e5d605dae77f0d2c970109e4acff0ab538eb35
1 #ifndef _STACK_H_
2 # define _STACK_H_
4 void stack_init();
6 void stack_push(int);
7 int stack_pop();
9 #endif