summaryrefslogtreecommitdiff
path: root/src/strings/rindex.c
blob: 4f381cc04c6c1e7a2cadaa117d09f8774f56cc29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if 0

#include <string.h>
#include <strings.h>

char *rindex(const char *s, int c)
{
	return strrchr(s, c);
}

/*
XOPEN(400,700)
*/


#endif