Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* stack.h */
- typedef struct S_stack {
- int number;
- struct S_stack *next;
- } stack;
- void push(int number, stack **stk_ptr);
- int pop(stack **stk_ptr);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement