42sh 1.0.0
Create a shell in C
Loading...
Searching...
No Matches
my_push_back.c File Reference

The file containing the my_push_back function. More...

#include "mylist.h"

Functions

void my_push_back (node_t **begin, void *data, type_t type)
 Adds a node at the end of the list.
 

Detailed Description

The file containing the my_push_back function.

Author
Nicolas TORO

Function Documentation

◆ my_push_back()

void my_push_back ( node_t ** begin,
void * data,
type_t type )

Adds a node at the end of the list.

Parameters
beginThe beginning of the list
dataThe data to add
typeThe type of the data
Returns
void
Author
Nicolas TORO