1 2 3 4 5 6
#include <string.h> char *strrchr(const char *s, int c) { return __memrchr(s, c, strlen(s) + 1); }