File: esl_quicksort.h

package info (click to toggle)
hmmer 3.2.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 23,380 kB
  • sloc: ansic: 119,305; perl: 8,791; sh: 3,266; makefile: 1,871; python: 598
file content (11 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
/* Quicksort, reentrant.
 */
#ifndef eslQUICKSORT_INCLUDED
#define eslQUICKSORT_INCLUDED
#include "esl_config.h"

extern int esl_quicksort(const void *data, int n, int (*comparison)(const void *data, int o1, int o2), int *sorted_at);


#endif /*eslQUICKSORT_INCLUDED*/