STD_SearchString

C Specification

#include <nitro/std.h>

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

Arguments

srcp Specifies the searched for string pointer.
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

10/05/2005 Initial version.

CONFIDENTIAL