Implement QuickSort

This commit is contained in:
2026-05-08 04:33:59 -05:00
parent b6b2500944
commit de5493e7c6
5 changed files with 101 additions and 13 deletions

8
include/quicksort.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef LSORT_QUICKSORT_H
#define LSORT_QUICKSORT_H
#include "types.h"
int lsort_quicksort(lsort_array_i* array, int (*function_pointer)(int, int));
#endif