#include <nitro/std.h>
int STD_GetStringLength( char* str );
int STD_StrLen( char* str );
str | Specifies the string pointer. |
Returns the length of the string.
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()
.
10/05/2005 Initial version.
CONFIDENTIAL