/** * string-comparator.h * A definition of the handy-dandy string_comparator type for things * like strcmp that are used to compare strings. */ #ifndef __STRING_COMPARATOR__ #define __STRING_COMPARATOR__ typedef int (*string_comparator)(const char *, const char *); #endif // __STRING_COMPARATOR__