/* File: genselect.h Header file for a generic selection sort function. */ #ifndef _genselect_h #define _genselect_h /* Define a type for a pointer to a function that takes two void * parameters and returns an integer. */ typedef int (* CMP_FUNC) (void *, void *) ; /* Function prototypes */ void SelectionSort(void *, int, int, CMP_FUNC) ; #endif