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

Go to the source code of this file.

Functions

void list_merge_sort (t_list *alst)
 Sorts this list in ascending order using in-place merge sort. More...
 

Function Documentation

◆ list_merge_sort()

void list_merge_sort ( t_list alst)

Sorts this list in ascending order using in-place merge sort.

Note
For this function to work, the datatype in this list must be comparable (i.e. implement the cmp function).

Definition at line 75 of file list_merge_sort.c.