libcproject
C static library easier to use than libc (C standard library).
|
Go to the source code of this file.
Data Structures | |
struct | queue |
Queue structure => FIFO (First In First Out). More... | |
struct | queue_node |
Queue node structure. More... | |
Functions | |
struct queue * | queue_initialization () |
Queue initialization. More... | |
void | queue_push (struct queue *queue, void *data) |
Push data to queue. More... | |
void * | queue_pop (struct queue *queue) |
Pop data from queue. More... | |
void | queue_free (struct queue *queue) |
Frees the queue. More... | |
struct queue |
struct queue_node |
struct queue* queue_initialization | ( | ) |
Queue initialization.
void queue_push | ( | struct queue * | queue, |
void * | data | ||
) |
Push data to queue.
queue | |
data |
void* queue_pop | ( | struct queue * | queue | ) |
Pop data from queue.
queue |
void queue_free | ( | struct queue * | queue | ) |
Frees the queue.
queue |