home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 September (Japanese) / CICA Shareware for Windows CD-ROM (Walnut Creek) (September 1995) (Japanese) (Disc 2).iso / disc2 / nt / source.exe / POSIX / BSDPSX / RINDEX.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-27  |  145 b   |  11 lines

  1. #include <string.h>
  2. /*
  3.  * Rindex:  Posix implementation DF_MSS
  4.  */
  5.  
  6.  
  7. char *rindex(const char *p, int ch)
  8. {
  9.   return(strrchr(p, ch));
  10. }
  11.