Пространства имён
Варианты
Действия

wmemcpy

Материал из cppreference.com
< c | string | wide

 
 
 
Null-завершенный широкий строк
Функции
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Персонаж манипуляции
Original:
Character manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Преобразование в цифровой формат
Original:
Conversions to numeric formats
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Строками
Original:
String manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Массив манипуляции
Original:
Array manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
wmemcpy
wmemmove
wmemcmp
wmemchr
wmemset
 
Заголовочный файл <wchar.h>
wchar_t* wmemcpy( wchar_t* dest, const wchar_t* src, size_t count );
Копии count широких символов из объекта, на который указывает src на объект, на который указывает dest. Если объекты перекрывают друг друга, поведение не определено.
Original:
Copies count wide characters from the object pointed to by src to the object pointed to by dest. If the objects overlap, the behavior is undefined.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Содержание

[править] Параметры

dest -
указатель на ячейку памяти для копирования
Original:
pointer to the memory location to copy to
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
src -
указатель на ячейку памяти для копирования
Original:
pointer to the memory location to copy from
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
count -
количество байт для копирования
Original:
number of bytes to copy
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[править] Возвращаемое значение

dest

[править] Пример

[править] См. также

копирует определенное количество широких символов между двумя, возможно, перекрытия, массивы
Original:
copies a certain amount of wide characters between two, possibly overlapping, arrays
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(функция) [edit]