mirror of
https://github.com/lxsang/ant-http
synced 2024-11-18 01:08:21 +01:00
21 lines
416 B
C
21 lines
416 B
C
// code based on : https://github.com/majek/dump/blob/master/msqueue/queue.h
|
|
|
|
#ifndef QUEUE_H
|
|
#define QUEUE_H
|
|
|
|
struct queue_root;
|
|
|
|
struct queue_head {
|
|
void* data;
|
|
struct queue_head *next;
|
|
};
|
|
|
|
struct queue_root *ALLOC_QUEUE_ROOT();
|
|
void INIT_QUEUE_HEAD(struct queue_head *head);
|
|
|
|
void queue_put(struct queue_head *,struct queue_root *);
|
|
|
|
struct queue_head *queue_get(struct queue_root *root);
|
|
|
|
#endif // QUEUE_H
|