

#include <nitro/std.h>
char* STD_SearchChar( char* srcp, int c );
char* STD_StrChr( char* srcp, int c );
| srcp | Specifies the pointer to the string to search. |
| c | Specifies the character to search for. |
Returns a pointer to the first position in the character c within the string srcp.
If it's not there, it returns FALSE.
Searches through the string srcpfor the character c. It carries out the same operation as the C standard function strchr().
STD_StrChr() is defined as another name for STD_SearchChar().
2007/12/10 Initial version.
CONFIDENTIAL