data_structures
Functions
queue_enqueue.c File Reference
#include "queue.h"
+ Include dependency graph for queue_enqueue.c:

Go to the source code of this file.

Functions

void queue_enqueue (t_queue *queue, const void *data)
 Copies the item and adds the copy to the queue. More...
 

Function Documentation

◆ queue_enqueue()

void queue_enqueue ( t_queue queue,
const void *  data 
)

Copies the item and adds the copy to the queue.

Parameters
dataThe item to add

Definition at line 16 of file queue_enqueue.c.