42sh 1.0.0
Create a shell in C
|
The file containing the my_sort_int_array function. More...
#include "my.h"
Functions | |
void | my_sort_int_array (int *array, int size) |
Sorts an array (array) with a defined size (size) of integers in ascending order. | |
The file containing the my_sort_int_array function.
void my_sort_int_array | ( | int * | tab, |
int | size ) |
Sorts an array (array) with a defined size (size) of integers in ascending order.
tab | The array to sort |
size | The size of the tab |