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

The file containing the my_pop_front function. More...

#include "mylist.h"

Functions

node_tmy_pop_front (node_t **begin)
 Removes the first node of the list.
 

Detailed Description

The file containing the my_pop_front function.

Author
Nicolas TORO

Function Documentation

◆ my_pop_front()

node_t * my_pop_front ( node_t ** begin)

Removes the first node of the list.

Parameters
beginThe beginning of the list
Returns
node_t * The first node of the list
Author
Nicolas TORO