17 lines
177 B
C
17 lines
177 B
C
/*
|
|
* strchr.c
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
char *strchr(const char *s, int c)
|
|
{
|
|
while ( *s != (char)c ) {
|
|
if ( ! *s )
|
|
return NULL;
|
|
s++;
|
|
}
|
|
|
|
return (char *)s;
|
|
}
|