Changeset 103444 in vbox for trunk/include
- Timestamp:
- Feb 19, 2024 1:58:17 PM (14 months ago)
- svn:sync-xref-src-repo-rev:
- 161775
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r103283 r103444 2266 2266 # define RTStrCalcUtf16LenEx RT_MANGLER(RTStrCalcUtf16LenEx) 2267 2267 # define RTStrCat RT_MANGLER(RTStrCat) 2268 # define RTStrCat2 RT_MANGLER(RTStrCat2)2269 2268 # define RTStrCatEx RT_MANGLER(RTStrCatEx) 2270 2269 # define RTStrCatP RT_MANGLER(RTStrCatP) … … 2274 2273 # define RTStrConvertHexBytesEx RT_MANGLER(RTStrConvertHexBytesEx) 2275 2274 # define RTStrCopy RT_MANGLER(RTStrCopy) 2276 # define RTStrCopy2 RT_MANGLER(RTStrCopy2)2277 2275 # define RTStrCopyEx RT_MANGLER(RTStrCopyEx) 2278 2276 # define RTStrCopyP RT_MANGLER(RTStrCopyP) -
trunk/include/iprt/string.h
r103283 r103444 2378 2378 * String copy with overflow handling. 2379 2379 * 2380 * @return Pointer to \a pszDst on success, or NULL on failure.2381 *2382 * @param pszDst The destination buffer.2383 * @param cbDst The size of the destination buffer (in bytes).2384 * @param pszSrc The source string. NULL is not OK.2385 */2386 RTDECL(char *) RTStrCopy2(char *pszDst, size_t cbDst, const char *pszSrc);2387 2388 /**2389 * String copy with overflow handling.2390 *2391 2380 * @retval VINF_SUCCESS on success. 2392 2381 * @retval VERR_BUFFER_OVERFLOW if the destination buffer is too small. The … … 2457 2446 */ 2458 2447 RTDECL(int) RTStrCat(char *pszDst, size_t cbDst, const char *pszSrc); 2459 2460 /**2461 * String concatenation with overflow handling.2462 *2463 * @return Pointer to \a pszDst on success, or NULL on failure.2464 *2465 * @param pszDst The destination buffer.2466 * @param cbDst The size of the destination buffer (in bytes).2467 * @param pszSrc The source string. NULL is not OK.2468 */2469 RTDECL(char *) RTStrCat2(char *pszDst, size_t cbDst, const char *pszSrc);2470 2448 2471 2449 /**
Note:
See TracChangeset
for help on using the changeset viewer.