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

Go to the source code of this file.

Functions

void list_add_last (t_list *alst, const void *data)
 Adds a copy of the specified element at the back of this list. More...
 

Function Documentation

◆ list_add_last()

void list_add_last ( t_list alst,
const void *  data 
)

Adds a copy of the specified element at the back of this list.

Parameters
dataThe item to be copied

Definition at line 16 of file list_add_last.c.