repo.or.cz
/
word_lang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add README
[word_lang.git]
/
stack.h
blob
83e5d605dae77f0d2c970109e4acff0ab538eb35
1
#ifndef _STACK_H_
2
# define _STACK_H_
3
4
void
stack_init
();
5
6
void
stack_push
(
int
);
7
int
stack_pop
();
8
9
#endif