Description
Source
Call Graph
strchr
Search a character in the given string.


Syntax / parameters
char * strchr (const char *pString, int character)
|
Name |
Type |
Default |
Description |
pString |
const char *
|
|
Pointer to the start of the string to search.
|
character |
int
|
|
The character to find.
|
|
Return value |
char *
|
|
|
Description
Search a character in the given string.
Returns a pointer to the character location.
Source
The documentation for this Member was generated from the following file:
string.c