#include <nitro/std.h>
char* STD_SearchString( char* srcp, const char* str );
char* STD_StrStr( char* srcp, const char* str );
srcp | Specifies the searched for string pointer. |
str | Specifies the string pointer that does the search. |
Returns a pointer to the first position in the string str
within the string srcp
. If it's not there, it returns FALSE.
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()
.
10/05/2005 Initial version.
CONFIDENTIAL