data_structures
|
#include "queue.h"
Go to the source code of this file.
Functions | |
void * | queue_peek (const t_queue *queue) |
Returns the item in this queue that was least recently added. More... | |
void* queue_peek | ( | const t_queue * | queue | ) |
Returns the item in this queue that was least recently added.
The item is kepts on the queue.
NULL
if the queue is empty. Definition at line 16 of file queue_peek.c.