data_structures
|
#include "array.h"
Go to the source code of this file.
Functions | |
void | array_swap (t_array *array, size_t ind1, size_t ind2) |
Swaps elements at the two specified positions in the array. More... | |
void array_swap | ( | t_array * | array, |
size_t | ind1, | ||
size_t | ind2 | ||
) |
Swaps elements at the two specified positions in the array.
ind1 | The index of the first element |
ind2 | The index of the second element |
Definition at line 16 of file array_swap.c.