/* Quicksort, reentrant. */ #ifndef eslQUICKSORT_INCLUDED #define eslQUICKSORT_INCLUDED #include extern int esl_quicksort(const void *data, int n, int (*comparison)(const void *data, int o1, int o2), int *sorted_at); #endif /*eslQUICKSORT_INCLUDED*/