#include char* strchr(const char* string, int c) { do { if (*string == (char)c) return (char*)string; } while (*string++); return NULL; }