

#include <nitro/std.h>
char* STD_SearchString( char* srcp, const char* str );
char* STD_StrStr( char* srcp, const char* str );
| srcp | Specifies the pointer to the string to search. |
| 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().
2005/10/05 Initial version.
CONFIDENTIAL