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