home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Borland Programmer's Resource
/
Borland_Programmers_Resource_CD_1995.iso
/
utils
/
source
/
bsdpsx
/
rindex.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-05-19
|
145 b
|
11 lines
#include <string.h>
/*
* Rindex: Posix implementation DF_MSS
*/
char *rindex(const char *p, int ch)
{
return(strrchr(p, ch));
}