Advertisement
aaronvan

stack.h

Aug 29th, 2020
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. /* stack.h */
  2.  
  3. typedef struct S_stack {
  4. int number;
  5. struct S_stack *next;
  6. } stack;
  7.  
  8. void push(int number, stack **stk_ptr);
  9. int pop(stack **stk_ptr);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement