home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff319.lzh / CNewsSrc / cnews.orig.lzh / libfake / rindex.c < prev    next >
C/C++ Source or Header  |  1989-06-27  |  239b  |  16 lines

  1. /*
  2.  * rindex - find last occurrence of a character in a string
  3.  */
  4.  
  5. #define    NULL    0
  6.  
  7. char *                /* found char, or NULL if none */
  8. rindex(s, charwanted)
  9. char *s;
  10. char charwanted;
  11. {
  12.     extern char *strrchr();
  13.  
  14.     return(strrchr(s, charwanted));
  15. }
  16.