diff options
Diffstat (limited to 'Build/source/texk/upmendex/qsort.h')
-rw-r--r-- | Build/source/texk/upmendex/qsort.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Build/source/texk/upmendex/qsort.h b/Build/source/texk/upmendex/qsort.h new file mode 100644 index 00000000000..13e4972fec3 --- /dev/null +++ b/Build/source/texk/upmendex/qsort.h @@ -0,0 +1,16 @@ +/* + * + * This file is part of + * MakeIndex - A formatter and format independent index processor + * + * This file is public domain software donated by + * Nelson Beebe (beebe@science.utah.edu). + * + */ +#include <string.h> /* for size_t */ + +typedef int (*qq_compar_fn_t)(const void *, const void *); + +extern void qqsort (void *base, size_t n, size_t size, qq_compar_fn_t compar); + +#define qsort qqsort |