mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-09 14:51:30 +01:00
24 lines
352 B
C
24 lines
352 B
C
#ifndef __QUEUE__
|
|
#define __QUEUE__
|
|
|
|
#include <stdlib.h>
|
|
|
|
// FIFO = First In First Out
|
|
struct queue {
|
|
struct queue_node *first;
|
|
size_t length;
|
|
};
|
|
|
|
struct queue_node {
|
|
void *data;
|
|
struct queue_node *next;
|
|
};
|
|
|
|
struct queue *queue_initialization();
|
|
|
|
void queue_push(struct queue *queue, void *data);
|
|
|
|
void *queue_pop(struct queue *queue);
|
|
|
|
#endif
|