blob: 6040cc448774752a7225bddad793fdedf172b83b [file] [log] [blame]
/*
* strchr.c
*/
#include <string.h>
#include <klibc/compiler.h>
char *strchr(const char *s, int c)
{
while (*s != (char)c) {
if (!*s)
return NULL;
s++;
}
return (char *)s;
}
__ALIAS(char *, index, (const char *, int), strchr)