STD_CompareString

C Specification

#include <nitro/std.h>

int STD_CompareString( const char* str1, const char* str2 );
int STD_StrCmp( const char* str1, const char* str2 );

Arguments

str1 Specifies the pointer to the compared string.
str2 Specifies the pointer to the compared string.

Return Values

Returns 0 if the compared strings are the same.

Description

Compares charstring str1 and charstring str2. It carries out the same operation as the C standard function strcmp().

STD_StrCmp() is defined as another name for STD_StrCompareString().

See Also

STD_CompareNString, STD_CompareLString

Revision History

10/05/2005 Initial version.

CONFIDENTIAL