code: purgatorio

ref: 1f6de2fe3823cc6e749b8254187e81e20589bae8
dir: /libkern/strrchr.c/

View raw version
#include <lib9.h>

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

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