#include <mplib1/stricmp.h>
int stricmp( const char *str1, const char *str2 );
This function is provides a case-insensitive version of strcmp.
It is used by a number of other routines in this library
and is used rather than attempting to use the Berkeley routine
strcasecmp() which is usually either not available, or extremely
difficult to use on modern systems without using other incorrect
modules from the compatability library.