syslinux/com32/lib/strchr.c
<<
>>
Prefs
   1/*
   2 * strchr.c
   3 */
   4
   5#include <string.h>
   6
   7char *strchr(const char *s, int c)
   8{
   9    while (*s != (char)c) {
  10        if (!*s)
  11            return NULL;
  12        s++;
  13    }
  14
  15    return (char *)s;
  16}
  17
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.