home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / TELECOM / stg_v4.lzh / stricmp.c < prev    next >
C/C++ Source or Header  |  1994-11-11  |  167b  |  12 lines

  1. char *
  2. stricmp(s1,s2)
  3. char *s1,*s2;
  4. {
  5.   while (*s1 && *s2 && toupper(*s1)==toupper(*s2))
  6.   {
  7.     s1++;
  8.     s2++;
  9.   }
  10.   return(toupper(*s2)-toupper(*s1));
  11. }
  12.