blob: 831531132fd43fa18495fb59ebf10252870d1f08 [file] [log] [blame]
/*
* strchr.c
*/
#include <string.h>
#include "mystuff.h"
char *strchr(const char *s, int c)
{
while (*s != (char)c) {
if (!*s)
return NULL;
s++;
}
return (char *)s;
}