MicrOS
|
#include "../string.h"
Functions | |
char * | strchr (const char *str, int character) |
Locate first occurrence of character in string. More... | |
char* strchr | ( | const char * | str, |
int | character | ||
) |
Locate first occurrence of character in string.
Returns a pointer to the first occurrence of character in the C string str.
str | C string. |
character | Character to be located. It is passed as its int promotion, but it is internally converted back to char for the comparison. |