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