STD_SearchString

Syntax

#include <nitro/std.h>

char* STD_SearchString( char* srcp, const char* str );
char* STD_StrStr( char* srcp, const char* str );

Arguments

srcp Specifies the pointer to the string to search.
str Specifies the string pointer that does the search.

Return Values

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

Description

String str is searched from string srcp. It carries out the same operation as the C standard function strstr().

STD_StrStr() is defined as another name for STD_SearchString().

See Also

Revision History

2005/10/05 Initial version.


CONFIDENTIAL