ref: 7effba9d98e8a39ee1504192d02d40e86d90b19a dir: /sys/src/ape/lib/ap/gen/strrchr.c/
#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; }