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