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

  1.  
  2. STRCHR(3)                  UNIX Programmer's Manual                  STRCHR(3)
  3.  
  4. NNAAMMEE
  5.      ssttrrcchhrr - locate character in string
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttrriinngg..hh>>
  9.  
  10.      _c_h_a_r _*
  11.      ssttrrcchhrr(_c_o_n_s_t _c_h_a_r _*_s, _i_n_t _c)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The ssttrrcchhrr() function locates the first occurence of _c in the string
  15.      pointed to by _s. The terminating NULL character is considered part of the
  16.      string.  If _c is `\0', ssttrrcchhrr() locates the terminating `\0'.
  17.  
  18. RREETTUURRNN VVAALLUUEESS
  19.      The function ssttrrcchhrr() returns a pointer to the located character, or NULL
  20.      if the character does not appear in the string.
  21.  
  22. SSEEEE AALLSSOO
  23.      index(3),  memchr(3),  rindex(3),  strcspn(3),  strpbrk(3),  strrchr(3),
  24.      strsep(3),  strspn(3),  strstr(3),  strtok(3)
  25.  
  26. SSTTAANNDDAARRDDSS
  27.      The ssttrrcchhrr() function conforms to ANSI C3.159­1989 (``ANSI C'').
  28.  
  29. BSD Experimental                 June 29, 1991                               1
  30.  
  31.  
  32.  
  33.  
  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.