]> git.saurik.com Git - redis.git/blob - src/pqsort.h
Version bumped to 2.5.10 (2.6 RC4) + Release Notes.
[redis.git] / src / pqsort.h
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