Changeset 103284 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Feb 8, 2024 3:24:49 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/RTStrCat.cpp
r103283 r103284 72 72 RT_EXPORT_SYMBOL(RTStrCat); 73 73 74 RTDECL( int) RTStrCat2(char *pszDst, size_t cbDst, const char *pszSrc)74 RTDECL(char *) RTStrCat2(char *pszDst, size_t cbDst, const char *pszSrc) 75 75 { 76 76 return RT_SUCCESS(rtStrCat(pszDst, cbDst, pszSrc)) ? pszDst : NULL;
Note:
See TracChangeset
for help on using the changeset viewer.