#include char* strtok(char* s, const char* delim) { static char *saveptr; return strtok_s(s, delim, &saveptr); }