/* * Copyright (C) 1991, 1992 Linus Torvalds */ #include /** * strchr - Find the first occurrence of a character in a string * @s: The string to be searched * @c: The character to search for */ char *(strchr)(const char *s, int c) { for(; *s != (char) c; ++s) if (*s == '\0') return NULL; return (char *) s; } /* * Local variables: * mode: C * c-file-style: "BSD" * c-basic-offset: 8 * tab-width: 8 * indent-tabs-mode: t * End: */