Changeset 103252 in vbox for trunk/include
- Timestamp:
- Feb 7, 2024 2:40:12 PM (12 months ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r103014 r103252 2273 2273 # define RTStrConvertHexBytesEx RT_MANGLER(RTStrConvertHexBytesEx) 2274 2274 # define RTStrCopy RT_MANGLER(RTStrCopy) 2275 # define RTStrCopy2 RT_MANGLER(RTStrCopy2) 2275 2276 # define RTStrCopyEx RT_MANGLER(RTStrCopyEx) 2276 2277 # define RTStrCopyP RT_MANGLER(RTStrCopyP) -
trunk/include/iprt/string.h
r103024 r103252 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 * 2380 2391 * @retval VINF_SUCCESS on success. 2381 2392 * @retval VERR_BUFFER_OVERFLOW if the destination buffer is too small. The
Note:
See TracChangeset
for help on using the changeset viewer.