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

The file containing the my_sort_list function. More...

#include "mylist.h"

Functions

void my_sort_list (node_t **begin, int(*cmp)())
 Sorts the linked list.
 

Detailed Description

The file containing the my_sort_list function.

Author
Nicolas TORO

Function Documentation

◆ my_sort_list()

void my_sort_list ( node_t ** begin,
int(* cmp )() )

Sorts the linked list.

Parameters
beginThe beginning of the list
cmpThe comparison function
Returns
void
Author
Nicolas TORO