shithub: scc

ref: 45a3ec40329b2948edc3a4e94f1850ccd02f4f29
dir: /lib/c/src/strrchr.c/

View raw version
#include <string.h>
#undef strrchr

char *
strrchr(const char *s, int c)
{
	const char *t = s;

	while (*t)
		++t;
	while (t > s && *t != c)
		--t;
	return (*t == c) ? (char *)t : NULL;
}