

#include <nitro/std.h>
int STD_GetStringLength( const char* str );
int STD_StrLen( const 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_StrLen() is defined as another name for STD_GetStringLength().
2008/09/18 Revised definitions.
2005/10/05 Initial version.
CONFIDENTIAL