1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* * strchr.c */ #include <string.h> char *strchr(const char *s, int c) { while ( *s != (char)c ) { if ( ! *s ) return NULL; s++; } return (char *)s; }