summaryrefslogtreecommitdiff
path: root/com32/lib/strchr.c
blob: cd3ec780c8f9d76b714fdcca1e82725dd8ed9919 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * strchr.c
 */

#include <string.h>

char *strchr(const char *s, int c)
{
    while (*s != (char)c) {
	if (!*s)
	    return NULL;
	s++;
    }

    return (char *)s;
}