time: fix incorrect DST offset when using POSIX timezones without DST
[musl.git] / src / string / strrchr.c
blob635fb3c1dcde17abaf662e8cb9952c00e45f5471
1 #include <string.h>
3 void *__memrchr(const void *, int, size_t);
5 char *strrchr(const char *s, int c)
7 return __memrchr(s, c, strlen(s) + 1);