home *** CD-ROM | disk | FTP | other *** search
- #include <string.h>
-
- /**********************************************************************
- * This function acts as an interface to any compiler-specific function
- * to compare two strings without regard to case.
- *
- * author: James Hall
- */
-
- int
- strcmpi (const char *s1, const char *s2)
- {
- /* Insert your native function here */
- return (strcasecmp (s1, s2));
- }
-