home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / unixlib / src / rindex.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  97b  |  9 lines

  1. #include <string.h>
  2.  
  3. #undef rindex
  4.  
  5. char *rindex(char *str, int c)
  6. {
  7.   return strrchr(str, c);
  8. }
  9.