allwinner_a64/android/external/syslinux/dos/strchr.c
2018-08-08 16:14:42 +08:00

17 lines
192 B
C

/*
* 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;
}