rework langinfo code for ABI compat and for use by time code
[musl] / string / strrchr.c
1 #include <string.h>
2
3 char *strrchr(const char *s, int c)
4 {
5         return __memrchr(s, c, strlen(s) + 1);
6 }