shithub: riscv

ref: 2c9b1c6b53c2a6573e286ce7cbd76ef316068a3a
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 = s++;
	return r;
}