summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/dos/strchr.c
blob: 831531132fd43fa18495fb59ebf10252870d1f08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * 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;
}