ref: f8e18c25020d34e589f51f0436a62f2284ca2ec3
dir: /libc/src/strchr.c/
/* See LICENSE file for copyright and license details. */
#include <string.h>
char *
strchr(const char *s, int c)
{
while (*s && *s != c)
++s;
return (*s == c) ? (char *)s : NULL;
}