1
0

rindex.c 124 B

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