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 >
Wrap
C/C++ Source or Header
|
1995-01-07
|
368b
|
16 lines
#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));
}