The strchr function

Name

strchr -- 

Synopsis

#include <string.h>

char *strchr (char *s, int c);

Description

The strchr function locates the first occurrence of c (converted to a char) in the string pointed to by s. The terminating null character is considered to be part of the string.

Returns

The strchr function returns a pointer to the located character, or a null pointer if the character does not occur in the string.

Implementation Notes

None