home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff218.lzh / EdLib / man / StrICmp < prev    next >
Text File  |  1989-06-04  |  828b  |  32 lines

  1. STRICMP(3)                 Library Functions                STRICMP(3)
  2.  
  3.  
  4.  
  5. NAME
  6.      stricmp - compare two strings with case insensitivity
  7.  
  8. SYNOPSIS
  9.      #include <edlib.h>
  10.  
  11.      int stricmp(str1,str2)
  12.      char *str1,*str2;
  13.  
  14. DESCRIPTION
  15.      Stricmp lexographically compares the two null terminated strings.
  16.      It returns a number less than zero if the first differing
  17.      character of str1 is less than that of str2, zero if the two
  18.      strings are equal, and a number greater than zero if the
  19.      first differing character in str1 is greater than the
  20.      corresponding character of str2. Stricmp works like strcmp(3)
  21.      except that all alphabetic characters are treated as lower case
  22.      for the purposes of the comparison.
  23.  
  24. AUTHOR
  25.      Edwin Hoogerbeets 01/08/88
  26.  
  27. SEE ALSO
  28.      strcmp(3), strncmp(3), strnicmp(3)
  29.  
  30.  
  31.  
  32.