Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FGenericWidePlatformString
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static WIDECHAR * Strncat
(
WIDECHAR* Dest, |
Appends the first SrcLen characters of Src to Dest, plus a terminating null-character. | GenericPlatform/GenericWidePlatformString.h | |
static ANSICHAR * Strncat
(
ANSICHAR* Dest, |
Appends the first SrcLen characters of Src to Dest, plus a terminating null-character. | GenericPlatform/GenericWidePlatformString.h | |
static UTF8CHAR * Strncat
(
UTF8CHAR* Dest, |
Appends the first SrcLen characters of Src to Dest, plus a terminating null-character. | GenericPlatform/GenericWidePlatformString.h |
Strncat(WIDECHAR , const WIDECHAR , SIZE_T)
Description
Appends the first SrcLen characters of Src to Dest, plus a terminating null-character. If the length of the string in Src is less than SrcLen, only the content up to the terminating null-character is copied.
| Name | Strncat |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/GenericPlatform/GenericWidePlatformString.h |
| Include Path | #include "GenericPlatform/GenericWidePlatformString.h" |
| Source | /Engine/Source/Runtime/Core/Private/GenericPlatform/GenericWidePlatformString.cpp |
static WIDECHAR * Strncat
(
WIDECHAR * Dest,
const WIDECHAR * Src,
SIZE_T SrcLen
)
Strncat(ANSICHAR , const ANSICHAR , SIZE_T)
Description
Appends the first SrcLen characters of Src to Dest, plus a terminating null-character. If the length of the string in Src is less than SrcLen, only the content up to the terminating null-character is copied.
| Name | Strncat |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/GenericPlatform/GenericWidePlatformString.h |
| Include Path | #include "GenericPlatform/GenericWidePlatformString.h" |
static ANSICHAR * Strncat
(
ANSICHAR * Dest,
const ANSICHAR * Src,
SIZE_T SrcLen
)
Strncat(UTF8CHAR , const UTF8CHAR , SIZE_T)
Description
Appends the first SrcLen characters of Src to Dest, plus a terminating null-character. If the length of the string in Src is less than SrcLen, only the content up to the terminating null-character is copied.
| Name | Strncat |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/GenericPlatform/GenericWidePlatformString.h |
| Include Path | #include "GenericPlatform/GenericWidePlatformString.h" |
static UTF8CHAR * Strncat
(
UTF8CHAR * Dest,
const UTF8CHAR * Src,
SIZE_T SrcLen
)