8 lines
158 B
C
8 lines
158 B
C
|
|
#ifndef LSORT_QUICKSORT_H
|
||
|
|
#define LSORT_QUICKSORT_H
|
||
|
|
|
||
|
|
#include "types.h"
|
||
|
|
|
||
|
|
int lsort_quicksort(lsort_array_i* array, int (*function_pointer)(int, int));
|
||
|
|
|
||
|
|
#endif
|