1
0
mirror of https://github.com/fluencelabs/redis synced 2025-07-03 02:41:33 +00:00
Files
client-libraries
design-documents
doc
tests
utils
.gitignore
BETATESTING.txt
BUGS
COPYING
Changelog
Makefile
README
TODO
adlist.c
adlist.h
ae.c
ae.h
ae_epoll.c
ae_kqueue.c
ae_select.c
anet.c
anet.h
config.h
dict.c
dict.h
fmacros.h
linenoise.c
linenoise.h
lzf.h
lzfP.h
lzf_c.c
lzf_d.c
mkreleasehdr.sh
pqsort.c
pqsort.h
redis-benchmark.c
redis-check-aof.c
redis-check-dump.c
redis-cli.c
redis.c
redis.conf
redis.h
release.c
sds.c
sds.h
sha1.c
sha1.h
solarisfixes.h
staticsymbols.h
ziplist.c
ziplist.h
zipmap.c
zipmap.h
zmalloc.c
zmalloc.h
redis/pqsort.h

16 lines
430 B
C
Raw Normal View History

/* The following is the NetBSD libc qsort implementation modified in order to
* support partial sorting of ranges for Redis.
*
* Copyright(C) 2009-2010 Salvatore Sanfilippo. All rights reserved.
*
* See the pqsort.c file for the original copyright notice. */
#ifndef __PQSORT_H
#define __PQSORT_H
void
pqsort(void *a, size_t n, size_t es,
2009-05-28 18:28:55 +02:00
int (*cmp) (const void *, const void *), size_t lrange, size_t rrange);
#endif