]> git.datanom.net - clib.git/blob - queue.h
64144818dace8db46f4499ca2489f6c1d71b3492
[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.066273 seconds and 6 git commands to generate.