allwinner_a64/android/external/syslinux/com32/lib/strrchr.c
2018-08-08 16:14:42 +08:00

18 lines
205 B
C

/*
* strrchr.c
*/
#include <string.h>
char *strrchr(const char *s, int c)
{
const char *found = NULL;
while (*s) {
if (*s == (char)c)
found = s;
s++;
}
return (char *)found;
}