5 extern void*
__memrchr(
const void*,
int,
size_t);
char * strrchr(const char *s, int c)
Finds the last occurrence of c in the null-terminated byte string pointed to by s.
void * __memrchr(const void *, int, size_t)
size_t strlen(const char *str)
Returns the length of the given null-terminated byte string.