shithub: scc

ref: fcc4d827f855bae3c6e3f1fb7eaaec326bc4765c
dir: /lib/c/strchr.c/

View raw version
#include <string.h>
#undef strchr

char *
strchr(const char *s, int c)
{
	while (*s && *s != c)
		++s;
	return (*s == c) ? (char *)s : NULL;
}