#include <stdio.h>
#include <string.h>
#include <wchar.h>
Go to the source code of this file.
|
errno_t | strcat_s (char *strDestination, size_t numberOfElements, const char *strSource) |
|
errno_t | strcpy_s (char *strDestination, size_t numberOfElements, const char *strSource) |
|
errno_t | strncpy_s (char *strDest, size_t numberOfElements, const char *strSource, size_t count) |
|
errno_t | wcscat_s (wchar_t *strDestination, size_t numberOfElements, const wchar_t *strSource) |
|
errno_t | wcscpy_s (wchar_t *strDestination, size_t numberOfElements, const wchar_t *strSource) |
|
errno_t | wcsncpy_s (wchar_t *strDest, size_t numberOfElements, const wchar_t *strSource, size_t count) |
|
errno_t | wcstombs_s (size_t *pReturnValue, char *mbstr, size_t sizeInBytes, const wchar_t *wcstr, size_t count) |
|
errno_t | wctomb_s (int *pRetValue, char *mbchar, size_t sizeInBytes, wchar_t wchar) |
|
◆ _ERRNO_T_DEFINED
◆ errno_t
◆ strcat_s()
errno_t strcat_s |
( |
char * |
strDestination, |
|
|
size_t |
numberOfElements, |
|
|
const char * |
strSource |
|
) |
| |
◆ strcpy_s()
errno_t strcpy_s |
( |
char * |
strDestination, |
|
|
size_t |
numberOfElements, |
|
|
const char * |
strSource |
|
) |
| |
◆ strncpy_s()
errno_t strncpy_s |
( |
char * |
strDest, |
|
|
size_t |
numberOfElements, |
|
|
const char * |
strSource, |
|
|
size_t |
count |
|
) |
| |
◆ wcscat_s()
errno_t wcscat_s |
( |
wchar_t * |
strDestination, |
|
|
size_t |
numberOfElements, |
|
|
const wchar_t * |
strSource |
|
) |
| |
◆ wcscpy_s()
errno_t wcscpy_s |
( |
wchar_t * |
strDestination, |
|
|
size_t |
numberOfElements, |
|
|
const wchar_t * |
strSource |
|
) |
| |
◆ wcsncpy_s()
errno_t wcsncpy_s |
( |
wchar_t * |
strDest, |
|
|
size_t |
numberOfElements, |
|
|
const wchar_t * |
strSource, |
|
|
size_t |
count |
|
) |
| |
◆ wcstombs_s()
errno_t wcstombs_s |
( |
size_t * |
pReturnValue, |
|
|
char * |
mbstr, |
|
|
size_t |
sizeInBytes, |
|
|
const wchar_t * |
wcstr, |
|
|
size_t |
count |
|
) |
| |
◆ wctomb_s()
errno_t wctomb_s |
( |
int * |
pRetValue, |
|
|
char * |
mbchar, |
|
|
size_t |
sizeInBytes, |
|
|
wchar_t |
wchar |
|
) |
| |