musl-tcc/src/string/rindex.c

9 lines
124 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#define _BSD_SOURCE
#include <string.h>
#include <strings.h>
char *rindex(const char *s, int c)
{
return strrchr(s, c);
}