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
/
rindex.c
< prev
next >
Wrap
C/C++ Source or Header
|
1980-01-01
|
239b
|
16 lines
/*
* rindex - find last occurrence of a character in a string
*/
#define NULL 0
char * /* found char, or NULL if none */
rindex(s, charwanted)
char *s;
char charwanted;
{
extern char *strrchr();
return(strrchr(s, charwanted));
}