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
/
index.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
94b
|
9 lines
#include <string.h>
#undef index
char *index(char *str, int c)
{
return strchr(str, c);
}