code: purgatorio

ref: 82a3f55c5fb7b9f7a82449e4eb943c535ec3e491
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;
}