home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / pdc / libsrc / stringlib / rindex.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-04-07  |  266 b   |  18 lines

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