]> git.datanom.net - clib.git/blob - queue.h
Initial commit
[clib.git] / queue.h
1
2 #ifndef _QUEUE_H_
3 #define _QUEUE_H_
4
5 void* queue_pop();
6 void queue_push(void*);
7 void* queue_front();
8 void* queue_back();
9 void queue_clear();
10
11 #endif
This page took 0.070222 seconds and 6 git commands to generate.