Changeset 76346 in vbox for trunk/src/VBox/Runtime/common/string
- Timestamp:
- Dec 22, 2018 12:51:28 AM (6 years ago)
- Location:
- trunk/src/VBox/Runtime/common/string
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/RTStrCat.cpp
r69111 r76346 32 32 #include "internal/iprt.h" 33 33 34 #include <iprt/err.h> 35 34 36 35 37 RTDECL(int) RTStrCat(char *pszDst, size_t cbDst, const char *pszSrc) -
trunk/src/VBox/Runtime/common/string/RTStrCatEx.cpp
r69111 r76346 32 32 #include "internal/iprt.h" 33 33 34 #include <iprt/err.h> 35 34 36 35 37 RTDECL(int) RTStrCatEx(char *pszDst, size_t cbDst, const char *pszSrc, size_t cchMaxSrc) -
trunk/src/VBox/Runtime/common/string/RTStrCatP.cpp
r69111 r76346 32 32 #include "internal/iprt.h" 33 33 34 #include <iprt/err.h> 35 34 36 35 37 RTDECL(int) RTStrCatP(char **ppszDst, size_t *pcbDst, const char *pszSrc) -
trunk/src/VBox/Runtime/common/string/RTStrCatPEx.cpp
r69111 r76346 32 32 #include "internal/iprt.h" 33 33 34 #include <iprt/err.h> 35 34 36 35 37 RTDECL(int) RTStrCatPEx(char **ppszDst, size_t *pcbDst, const char *pszSrc, size_t cchMaxSrc) -
trunk/src/VBox/Runtime/common/string/RTStrCopy.cpp
r69111 r76346 32 32 #include "internal/iprt.h" 33 33 34 #include <iprt/err.h> 35 34 36 35 37 RTDECL(int) RTStrCopy(char *pszDst, size_t cbDst, const char *pszSrc) -
trunk/src/VBox/Runtime/common/string/RTStrCopyEx.cpp
r69111 r76346 32 32 #include "internal/iprt.h" 33 33 34 #include <iprt/err.h> 35 34 36 35 37 RTDECL(int) RTStrCopyEx(char *pszDst, size_t cbDst, const char *pszSrc, size_t cchMaxSrc) -
trunk/src/VBox/Runtime/common/string/RTStrCopyP.cpp
r69111 r76346 32 32 #include "internal/iprt.h" 33 33 34 #include <iprt/err.h> 35 34 36 35 37 RTDECL(int) RTStrCopyP(char **ppszDst, size_t *pcbDst, const char *pszSrc) -
trunk/src/VBox/Runtime/common/string/RTStrCopyPEx.cpp
r69111 r76346 32 32 #include "internal/iprt.h" 33 33 34 #include <iprt/err.h> 35 34 36 35 37 RTDECL(int) RTStrCopyPEx(char **ppszDst, size_t *pcbDst, const char *pszSrc, size_t cchMaxSrc) -
trunk/src/VBox/Runtime/common/string/RTStrNLenEx.cpp
r69111 r76346 32 32 #include "internal/iprt.h" 33 33 34 #include <iprt/err.h> 35 34 36 35 37 RTDECL(int) RTStrNLenEx(const char *pszString, size_t cchMax, size_t *pcch) -
trunk/src/VBox/Runtime/common/string/RTUtf16Cat.cpp
r69111 r76346 32 32 #include "internal/iprt.h" 33 33 34 #include <iprt/err.h> 35 34 36 35 37 RTDECL(int) RTUtf16Cat(PRTUTF16 pwszDst, size_t cwcDst, PCRTUTF16 pwszSrc) -
trunk/src/VBox/Runtime/common/string/RTUtf16CatAscii.cpp
r69111 r76346 32 32 #include "internal/iprt.h" 33 33 34 #include <iprt/err.h> 35 34 36 35 37 RTDECL(int) RTUtf16CatAscii(PRTUTF16 pwszDst, size_t cwcDst, const char *pszSrc) -
trunk/src/VBox/Runtime/common/string/RTUtf16Copy.cpp
r69111 r76346 32 32 #include "internal/iprt.h" 33 33 34 #include <iprt/err.h> 35 34 36 35 37 RTDECL(int) RTUtf16Copy(PRTUTF16 pwszDst, size_t cwcDst, PCRTUTF16 pwszSrc) -
trunk/src/VBox/Runtime/common/string/RTUtf16CopyAscii.cpp
r69111 r76346 31 31 #include <iprt/string.h> 32 32 #include "internal/iprt.h" 33 34 #include <iprt/err.h> 33 35 34 36 -
trunk/src/VBox/Runtime/common/string/RTUtf16NLenEx.cpp
r69111 r76346 32 32 #include "internal/iprt.h" 33 33 34 #include <iprt/err.h> 35 34 36 35 37 RTDECL(int) RTUtf16NLenEx(PCRTUTF16 pwszString, size_t cwcMax, size_t *pcwc) -
trunk/src/VBox/Runtime/common/string/ministring.cpp
r74262 r76346 33 33 *********************************************************************************************************************************/ 34 34 #include <iprt/cpp/ministring.h> 35 #include "internal/iprt.h" 36 35 37 #include <iprt/ctype.h> 36 38 #include <iprt/uni.h> 39 #include <iprt/err.h> 40 37 41 38 42 -
trunk/src/VBox/Runtime/common/string/strformatnum.cpp
r75129 r76346 34 34 35 35 #include <iprt/assert.h> 36 #include <iprt/err.h> 36 37 #include "internal/string.h" 37 38 -
trunk/src/VBox/Runtime/common/string/strformattype.cpp
r69111 r76346 33 33 #include "internal/iprt.h" 34 34 35 #include <iprt/asm.h> 35 36 #include <iprt/assert.h> 37 #include <iprt/err.h> 36 38 #include <iprt/stdarg.h> 37 #include <iprt/asm.h>38 39 #include "internal/string.h" 39 40 -
trunk/src/VBox/Runtime/common/string/utf-16-latin-1.cpp
r69111 r76346 29 29 * Header Files * 30 30 *********************************************************************************************************************************/ 31 #include <iprt/ string.h>31 #include <iprt/latin1.h> 32 32 #include "internal/iprt.h" 33 33 -
trunk/src/VBox/Runtime/common/string/utf-8.cpp
r70156 r76346 30 30 *********************************************************************************************************************************/ 31 31 #include <iprt/string.h> 32 #include <iprt/latin1.h> 32 33 #include "internal/iprt.h" 33 34
Note:
See TracChangeset
for help on using the changeset viewer.