NAME

strchr - string scanning operation

SYNOPSIS

#include "zkString.h"

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

DESCRIPTION

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

RETURN VALUE

Upon completion, strchr() returns a pointer to the byte, or NULL if the byte was not found.

ERRORS

No errors are defined.