index.c 102 B

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