summaryrefslogtreecommitdiff
path: root/src/strings/rindex.c
blob: 2050de25e7049629e95d29a93d55d122482e82bc (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <string.h>
#include <strings.h>

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

/*
XOPEN(400,700)
*/