11 lines
135 B
C
11 lines
135 B
C
#include <string.h>
|
|
/*
|
|
* Rindex: Posix implementation DF_MSS
|
|
*/
|
|
|
|
|
|
char *rindex(const char *p, int ch)
|
|
{
|
|
return(strrchr(p, ch));
|
|
}
|