Added matrix

This commit is contained in:
2021-07-12 10:22:33 -07:00
parent df2ee3bf1b
commit e990d28a1f
11 changed files with 250 additions and 64 deletions

View File

@ -64,6 +64,8 @@ void arraySort(size_t size, void *array, int32_t length, arraysort_t *sort) {
qsort(array, length, size, (_CoreCrtNonSecureSearchSortCompareFunction)sort);
}
// Common Sorters:
void arraySortInt32(int32_t *array, int32_t length) {
arraySort(sizeof(int32_t), array, length, &_arraySorterInt32);
}