Changeset 31221 in vbox for trunk/include/iprt
- Timestamp:
- Jul 29, 2010 4:03:53 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/string.h
r31199 r31221 829 829 * @param psz The string. 830 830 */ 831 #define RTStrCalcLatin1Len(psz) RTStrUniLen(psz) 831 RTDECL(size_t) RTStrCalcLatin1Len(const char *psz); 832 832 833 833 /** … … 843 843 * This is undefined on failure. 844 844 */ 845 #define RTStrCalcLatin1LenEx(psz, cch, pcch) RTStrUniLenEx(psz, cch, pcch) 845 RTDECL(int) RTStrCalcLatin1LenEx(const char *psz, size_t cch, size_t *pcwc); 846 846 847 847 /**
Note:
See TracChangeset
for help on using the changeset viewer.