home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: Windows 2000 Professional Resource Kit
/
W2KPRK.iso
/
apps
/
posix
/
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
|
1999-11-17
|
145 b
|
11 lines
#include <string.h>
/*
* Rindex: Posix implementation DF_MSS
*/
char *rindex(const char *p, int ch)
{
return(strrchr(p, ch));
}