Files
lsort/include/quicksort.h

8 lines
121 B
C
Raw Normal View History

2026-05-08 04:33:59 -05:00
#ifndef LSORT_QUICKSORT_H
#define LSORT_QUICKSORT_H
#include "types.h"
int lsort_quicksort(lsort_array* array);
2026-05-08 04:33:59 -05:00
#endif