char
*
strchr(
const char *s
, int c
)
)
function locates the first occurrence of
c
in the string pointed to by
s.
The terminating
NUL
character is considered part of the string.
If
c
is
`\0',
strchr(
)
locates the terminating
`\0'.
)
returns a pointer to the located character, or
NULL
if the character does not appear in the string.
),
p
will point to the string
"oobar:
char *p;
char *s = "foobar";
p = strchr(s, 'o');
)
function
conforms to
ANSI X3.159-1989 (``ANSI C89'') .