ref: ec042e5f710d1da2d3d3c28f1d5593c96ee4ed1b dir: /libkern/strrchr.c/
#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; }