1 2 3 4 5 6 7
#include <string.h> #include <strings.h> char *rindex(const char *s, int c) { return strrchr(s, c); }