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 / StrPos < prev    next >
Text File  |  1989-06-04  |  827b  |  36 lines

  1. STRPOS(3)                  Library Functions                 STRPOS(3)
  2.  
  3.  
  4.  
  5. NAME
  6.      strpos - give the first position of a character withing a string
  7.  
  8. SYNOPSIS
  9.      #include <edlib.h>
  10.  
  11.      int strpos(string,key)
  12.      char *string;
  13.      char key;
  14.  
  15. DESCRIPTION
  16.      Strpos searches the null terminated string 'string' for the
  17.      first occurance of the character 'key'. The position of this
  18.      character is returned. The terminating null character is
  19.      considered to be part of the string for the purposes of this
  20.      search. Thus, using strpos to find the null will give the
  21.      same result as a strlen(3).
  22.  
  23.      Some implementations of C use a variant called scnstr.
  24.  
  25. DIAGNOSTICS
  26.      Strpos returns a -1 if the character is not found in the string.
  27.  
  28. AUTHOR
  29.      Edwin Hoogerbeets 01/08/88
  30.  
  31. SEE ALSO
  32.      strrpos(3)
  33.  
  34.  
  35.  
  36.