blob: efbc47cd95528e535a0d887b2c5f1ca4e37beaaf [file] [log] [blame]
#include <linux/types.h>
#include <linux/string.h>
#include <malloc.h>
char * strchr(const char * s, int c)
{
for(; *s != (char) c; ++s)
if (*s == '\0')
return NULL;
return (char *) s;
}