]>
Commit | Line | Data |
---|---|---|
1 | /* The following is the NetBSD libc qsort implementation modified in order to | |
2 | * support partial sorting of ranges for Redis. | |
3 | * | |
4 | * Copyright(C) 2009-2010 Salvatore Sanfilippo. All rights reserved. | |
5 | * | |
6 | * See the pqsort.c file for the original copyright notice. */ | |
7 | ||
8 | #ifndef __PQSORT_H | |
9 | #define __PQSORT_H | |
10 | ||
11 | void | |
12 | pqsort(void *a, size_t n, size_t es, | |
13 | int (*cmp) (const void *, const void *), size_t lrange, size_t rrange); | |
14 | ||
15 | #endif |