STD_GetStringLength

C Specification

#include <nitro/std.h>

int STD_GetStringLength( char* str );
int STD_StrLen( char* str );

Arguments

str Specifies the string pointer.

Return Values

Returns the length of the string.

Description

Finds the length of string str. It carries out the same operation as the C standard function strlen().

STD_GetStringLength() is defined as another name for STD_StrLen().

See Also

Revision History

10/05/2005 Initial version.

CONFIDENTIAL