#include char *strchr(char const *s, int c) { for(size_t i = 0; s[i]; i++) { if(s[i] == c) return (char *)&s[i]; } return NULL; }