shithub: plan9front

ref: d6ce7969ede52e1b36e57f4d0ee98ca18a380cf4
dir: /sys/src/ape/lib/ap/gen/strrchr.c/

View raw version
#include <string.h>

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

	if(c == 0)
		return strchr(s, 0);
	r = 0;
	while(s = strchr(s, c))
		r = (char*)s++;
	return r;
}