Changeset 57358 in vbox for trunk/src/VBox/Runtime/common/string/strformat.cpp
- Timestamp:
- Aug 14, 2015 3:16:38 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/strformat.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Defined Constants *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Defined Constants * 30 *********************************************************************************************************************************/ 31 31 #define ISDIGIT(c) ((c) >= '0' && (c) <= '9') 32 32 /*#define MAX(a, b) ((a) >= (b) ? (a) : (b)) … … 34 34 35 35 36 /******************************************************************************* 37 * Header Files *38 ******************************************************************************* /36 /********************************************************************************************************************************* 37 * Header Files * 38 *********************************************************************************************************************************/ 39 39 #define LOG_GROUP RTLOGGROUP_STRING 40 40 #include <iprt/string.h> … … 64 64 65 65 66 /******************************************************************************* 67 * Internal Functions *68 ******************************************************************************* /66 /********************************************************************************************************************************* 67 * Internal Functions * 68 *********************************************************************************************************************************/ 69 69 static unsigned _strnlen(const char *psz, unsigned cchMax); 70 70 static unsigned _strnlenUtf16(PCRTUTF16 pwsz, unsigned cchMax);
Note:
See TracChangeset
for help on using the changeset viewer.