STD_SearchChar

Syntax

#include <nitro/std.h>

char* STD_SearchChar( char* srcp, int c );

char* STD_StrChr( char* srcp, int c );

Arguments

srcp Specifies the pointer to the string to search.
c Specifies the character to search for.

Return Values

Returns a pointer to the first position in the character c within the string srcp.
If it's not there, it returns FALSE.

Description

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().

See Also

Revision History

2007/12/10 Initial version.


CONFIDENTIAL