data_structures
|
#include "queue.h"
Go to the source code of this file.
Functions | |
void * | queue_dequeue (t_queue *queue) |
Removes and returns the item on this queue that was least recently added. More... | |
void* queue_dequeue | ( | t_queue * | queue | ) |
Removes and returns the item on this queue that was least recently added.
NULL
if the queue is empty. Definition at line 16 of file queue_dequeue.c.