strchr
#include "string.h" char *strchr( char *str, int ch ); The function strchr() returns a pointer to the first occurence of ch in str, or NULL if ch is not found. Related topics: strcat strcmp strcpy strlen strncat strncmp strncpy strpbrk strspn strstr
char *strchr( char *str, int ch );
The function strchr() returns a pointer to the first occurence of ch in str, or NULL if ch
is not found.