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