1 /* Portable version of strchr()
2 This function is in the public domain. */
6 strchr -- return pointer to first occurance of a character
9 char *strchr (const char *s, int c)
12 Returns a pointer to the first occurance of character C in
13 string S, or a NULL pointer if no occurance is found.
16 Behavior when character is the null character is implementation
24 register const char *s
;