rindex.c 104 B

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