MoreStringMgr.h File Reference
More string handling functions. More...
#include "MorePrefix.h"
#include <StringMgr.h>
Include dependency graph for MoreStringMgr.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
UInt16 | MStrLen (const Char *src) |
Returns length of a string. NULL safe. |
Detailed Description
More string handling functions.
Definition in file MoreStringMgr.h.
Function Documentation
|
Returns length of a string. NULL safe. Uses StrLen to return the length of a string, unless the string is NULL. Then, 0 is returned without any fuss. Definition at line 21 of file MoreStringMgr.c. 00022 { 00023 if ( src ) 00024 return StrLen( src ); 00025 else 00026 return 0; 00027 }
|