#define _BSD_SOURCE #include #include char *index(const char *s, int c) { return strchr(s, c); } #ifdef TEST int main(void) { return 0; } #endif