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

Go to the source code of this file.

Functions

void array_insertion_sort (t_array *array)
 Sorts this array using insertion sort. More...
 

Function Documentation

◆ array_insertion_sort()

void array_insertion_sort ( t_array array)

Sorts this array using insertion sort.

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

Definition at line 28 of file array_insertion_sort.c.