Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TCString
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static CharType * Strcpy
(
CharType* Dest, |
Strcpy wrapper | Misc/CString.h | |
static CharType * Strcpy
(
CharType(&) Dest, |
Strcpy wrapper (templated version to automatically handle static destination array case) | Misc/CString.h | |
static CharType * Strcpy
(
CharType* Dest, |
This version was deprecated because Strcpy taking a size field does not match the CRT strcpy, and on some platforms the size field was being ignored. | Misc/CString.h |
Strcpy(CharType , const CharType )
Description
Strcpy wrapper
| Name | Strcpy |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/CString.h |
| Include Path | #include "Misc/CString.h" |
static CharType * Strcpy
(
CharType * Dest,
const CharType * Src
)
destination string
Parameters
| Name | Remarks |
|---|---|
| Dest | destination string to copy to |
| Destcount | size of Dest in characters |
| Src | source string |
Strcpy(CharType(&), const CharType *)
Description
Strcpy wrapper (templated version to automatically handle static destination array case)
| Name | Strcpy |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/CString.h |
| Include Path | #include "Misc/CString.h" |
template<SIZE_T DestCount>
static CharType * Strcpy
(
CharType(&) Dest,
const CharType * Src
)
destination string
Parameters
| Name | Remarks |
|---|---|
| Dest | destination string to copy to |
| Src | source string |
Strcpy(CharType , SIZE_T, const CharType )
Description
This version was deprecated because Strcpy taking a size field does not match the CRT strcpy, and on some platforms the size field was being ignored. If the memzeroing causes a performance problem, request a new function StrcpyTruncate.
| Name | Strcpy |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/CString.h |
| Include Path | #include "Misc/CString.h" |
static CharType * Strcpy
(
CharType * Dest,
SIZE_T DestCount,
const CharType * Src
)