shithub: riscv

ref: 17f7f6be4e1a316c0f5f26ff70e047aece4de2bc
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;
}