summaryrefslogtreecommitdiff
path: root/lib/libc/arch/mvme88k/string/strrchr.c
blob: a9c8ddb7041b3712946b946a5f3cb9482597df0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)strlen.c	5.5 (Berkeley) 1/26/91";*/
static char *rcsid = "$Id: strrchr.c,v 1.1 1997/03/25 17:07:14 rahnds Exp $";
#endif /* LIBC_SCCS and not lint */

#include <string.h>

char *
strrchr(str, c)
	const char *str;
{
	rindex(str, c);
}