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 / StrRPBrk < prev    next >
Text File  |  1989-06-04  |  958b  |  37 lines

  1. STRRPBRK(3)                Library Functions               STRRPBRK(3)
  2.  
  3.  
  4.  
  5. NAME
  6.      strrpbrk - find the last occurance of a character of a set in
  7.      a string
  8.  
  9. SYNOPSIS
  10.      #include <edlib.h>
  11.  
  12.      char *strrpbrk(str, charset)
  13.      char *str, *charset;
  14.  
  15. DESCRIPTION
  16.      Strrpbrk searches backwards through the null terminated string
  17.      'str' for occurances of a character included in the character
  18.      set 'charset'. The 'charset' variable is null terminated string
  19.      that is treated as a character set. Therefore, repetition and
  20.      order are ignored. Strrpbrk returns a pointer to the last
  21.      character of 'charset' that is found in 'str'.
  22.  
  23. DIAGNOSTICS
  24.      If no character in 'charset' is found in 'str', then a null
  25.      pointer (NULL) is returned.
  26.  
  27. AUTHOR
  28.      Edwin Hoogerbeets 01/08/88 modified from strpbrk(3) by:
  29.      Daniel J. Barrett.
  30.      barrett@cs.jhu.edu or ins_adjb@jhunix.UUCP
  31.  
  32. SEE ALSO
  33.      strpbrk(3), strcspn(3), strspn(3)
  34.  
  35.  
  36.  
  37.