#ifndef WH_SORTSEARCH_H_4a991eb8_ #define WH_SORTSEARCH_H_4a991eb8_ /* This file is in the public domain. */ extern void heap_sort(void **, unsigned int, int (*)(void *, void *)); extern int bin_search(void **, unsigned int, int (*)(void *, void *), void *); #endif