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