blob: 3b6e49d9408323acd9db0f0c6215850deeb23b4f [file] [log] [blame]
#define _BSD_SOURCE
#include <string.h>
#include <strings.h>
char* index(const char* s, int c) {
return strchr(s, c);
}