//qsort2.h -- another version of quick sort, as qsort( ) in C Library // @CopyLeft by tsaiwn@csie.nctu.edu.tw #ifndef _QSORT2_H_ #define _QSORT2_H_ void qsort2(void*x, int n, int size, int (*cmp)(const void*, const void*) ); #endif