home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 21 / CD_ASCQ_21_040595.iso / dos / prg / c / freedos3 / source / jh_utils / strcmpi.c < prev    next >
C/C++ Source or Header  |  1995-01-07  |  368b  |  16 lines

  1. #include <string.h>
  2.  
  3. /**********************************************************************
  4.  * This function acts as an interface to any compiler-specific function
  5.  * to compare two strings without regard to case.
  6.  *
  7.  * author: James Hall
  8.  */
  9.  
  10. int 
  11. strcmpi (const char *s1, const char *s2)
  12. {
  13.   /* Insert your native function here */
  14.   return (strcasecmp (s1, s2));
  15. }
  16.