diff options
Diffstat (limited to 'rushs/tinyprintf/stack/stack.h')
| -rw-r--r-- | rushs/tinyprintf/stack/stack.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/rushs/tinyprintf/stack/stack.h b/rushs/tinyprintf/stack/stack.h deleted file mode 100644 index bd5dd24..0000000 --- a/rushs/tinyprintf/stack/stack.h +++ /dev/null @@ -1,14 +0,0 @@ -#ifndef STACK_H -#define STACK_H - -struct stack -{ - int data; - struct stack *next; -}; - -struct stack *stack_push(struct stack *s, int e); -struct stack *stack_pop(struct stack *s); -int stack_peek(struct stack *s); - -#endif /* !STACK_H */ |
