windows-nt/Source/XPSP1/NT/base/subsys/posix/programs/bsdlib/rindex.c

11 lines
135 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#include <string.h>
/*
* Rindex: Posix implementation DF_MSS
*/
char *rindex(const char *p, int ch)
{
return(strrchr(p, ch));
}