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
/
strrchr.c
< prev
next >
Wrap
C/C++ Source or Header
|
1980-01-01
|
395b
|
23 lines
/*
* strrchr - find last occurrence of a character in a string
*/
#define NULL 0
char * /* found char, or NULL if none */
strrchr(s, charwanted)
char *s;
register char charwanted;
{
register char *scan;
register char *place;
place = NULL;
for (scan = s; *scan != '\0'; scan++)
if (*scan == charwanted)
place = scan;
if (charwanted == '\0')
return(scan);
return(place);
}