home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 216.lha / EdLib_v1.0 / strpbrk.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-15  |  295 b   |  17 lines

  1. /* edlib  version 1.0 of 04/08/88 */
  2. #define NULL    0L
  3.  
  4. char *strpbrk(str, charset)
  5. char *str, *charset;
  6. {
  7.         char *temp;
  8.         extern char *index();
  9.  
  10.         temp = str;
  11.  
  12.         while ( *temp && !index(charset, *temp) )
  13.                 temp++;
  14.  
  15.         return( *temp ? temp : NULL);
  16. }
  17.