blob: 17df2bf2ecb89a109a3e7310d518dad76651b2fb [file] [log] [blame]
#include <string.h>
#include <strings.h>
char *rindex(const char *s, int c)
{
return strrchr(s, c);
}