]> git.datanom.net - clib.git/blame - stack.h
Initial commit
[clib.git] / stack.h
CommitLineData
d104c687
MR
1#ifndef _STACK_H_
2#define _STACK_H_
3
4#include <stdbool.h>
5
6typedef struct _Stack Stack;
7
8Stack* stack_init();
9void* stack_pop(Stack*);
10void stack_push(Stack*, void*);
11void* stack_peek(Stack*);
12bool stack_empty(Stack*);
13void** stack_clear(Stack** stack);
14
15#endif
This page took 0.031577 seconds and 5 git commands to generate.