ref: 53aac62a54ebbcc1781c0000d3e2384ed038c7bb 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; }