1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-09-17 04:45:54 +02:00
libcproject/lib/queue.h

46 lines
692 B
C

#ifndef __LIBCPROJECT_QUEUE__
#define __LIBCPROJECT_QUEUE__
#include <stdio.h>
#include <stdlib.h>
#include "types.h"
/**
* @brief Queue structure => FIFO (First In First Out).
* @since v1.0.0
*/
struct queue {
struct queue_node *first;
size_t length;
};
/**
* @brief Queue node structure.
* @since v1.0.0
*/
struct queue_node {
void *data;
struct queue_node *next;
};
/**
* @brief Queue initialization.
* @since v1.0.0
*/
struct queue *queue_initialization();
/**
* @brief Push data to queue.
* @since v1.0.0
*/
void queue_push(struct queue *queue, void *data);
/**
* @brief Pop data from queue.
* @since v1.0.0
*/
void *queue_pop(struct queue *queue);
#endif