home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-18.59-src.tgz / emacs-18.59-src.tar / fsf / emacs18 / amiga / unix / src / index.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  94b  |  9 lines

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