home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / amiga / gdb-4.12-src.lha / gdb-4.12 / libiberty / index.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-03  |  143 b   |  12 lines

  1. /* Stub implementation of (obsolete) index(). */
  2.  
  3. extern char * strchr();
  4.  
  5. char *
  6. index (s, c)
  7.   char *s;
  8.   int c;
  9. {
  10.   return strchr (s, c);
  11. }
  12.