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