fix the type of wchar_t on arm; support wchar_t varying with arch
[musl] / src / string / strrchr.c
1 #include <string.h>
2
3 void *__memrchr(const void *, int, size_t);
4
5 char *strrchr(const char *s, int c)
6 {
7         return __memrchr(s, c, strlen(s));
8 }