home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
300-399
/
ff319.lzh
/
CNewsSrc
/
cnews.src.lzh
/
libfake
/
index.c
< prev
next >
Wrap
C/C++ Source or Header
|
1980-01-01
|
236b
|
16 lines
/*
* index - find first occurrence of a character in a string
*/
#define NULL 0
char * /* found char, or NULL if none */
index(s, charwanted)
char *s;
char charwanted;
{
extern char *strchr();
return(strchr(s, charwanted));
}