]> git.saurik.com Git - redis.git/blame - pqsort.h
psort.c/h added. This is a partial qsort implementation that Redis will use when...
[redis.git] / pqsort.h
CommitLineData
75fd597d 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 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
11void
12pqsort(void *a, size_t n, size_t es,
13 int (*cmp) __P((const void *, const void *)), size_t lrange, size_t rrange)
14
15#endif