home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / man / cat3 / strcasecmp.0 < prev    next >
Text File  |  1993-12-07  |  2KB  |  67 lines

  1.  
  2. STRCASECMP(3)              UNIX Programmer's Manual              STRCASECMP(3)
  3.  
  4. NNAAMMEE
  5.      ssttrrccaasseeccmmpp - compare strings, ignoring case
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttrriinngg..hh>>
  9.  
  10.      _i_n_t
  11.      ssttrrccaasseeccmmpp(_c_o_n_s_t _c_h_a_r _*_s_1, _c_o_n_s_t _c_h_a_r _*_s_2)
  12.  
  13.      _i_n_t
  14.      ssttrrnnccaasseeccmmpp(_c_o_n_s_t _c_h_a_r _*_s_1, _c_o_n_s_t _c_h_a_r _*_s_2, _s_i_z_e___t _l_e_n)
  15.  
  16. DDEESSCCRRIIPPTTIIOONN
  17.      The ssttrrccaasseeccmmpp() and ssttrrnnccaasseeccmmpp() functions compare the null­terminated
  18.      strings _s_1 and _s_2 and return an integer greater than, equal to, or less
  19.      than 0, according as _s_1 is lexicographically greater than, equal to, or
  20.      less than _s_2 after translation of each corresponding character to lower­
  21.      case.  The strings themselves are not modified.  The comparison is done
  22.      using unsigned characters, so that `\200' is greater than `\0'.
  23.  
  24.      The ssttrrnnccaasseeccmmpp() compares at most _l_e_n characters.
  25.  
  26. SSEEEE AALLSSOO
  27.      bcmp(3),  memcmp(3),  strcmp(3),  strcoll(3),  strxfrm(3)
  28.  
  29. HHIISSTTOORRYY
  30.      The ssttrrccaasseeccmmpp() and ssttrrnnccaasseeccmmpp() functions are currently under develop­
  31.      ment.
  32.  
  33. BSD Experimental                April 19, 1991                               1
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.