summaryrefslogtreecommitdiff
path: root/com32/lib/strchr.c
blob: 192f83600c0220460cca0774095087a4226cb377 (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;
}