wcsncpy - копирует
широкосимвольную
строку
фиксированной
длины
Standard C library (
libc,
-lc)
#include <wchar.h>
wchar_t *wcsncpy(wchar_t dest[restrict .n],
const wchar_t src[restrict .n],
size_t n);
The
wcsncpy() function is the wide-character equivalent of the
strncpy(3) function. It copies at most
n wide characters from
the wide-character string pointed to by
src, including the terminating
null wide character (L'\0'), to the array pointed to by
dest. Exactly
n wide characters are written at
dest. If the length
wcslen(src) is smaller than
n, the remaining wide characters in
the array pointed to by
dest are filled with null wide characters. If
the length
wcslen(src) is greater than or equal to
n, the string
pointed to by
dest will not be terminated by a null wide character.
Строки не
должны
пересекаться.
Программист
должен
проверить,
что в
dest есть
место по
крайней
мере для
n
широких
символов.
wcsncpy()
возвращает
dest.
Описание
терминов
данного
раздела
смотрите в
attributes(7).
Интерфейс |
Атрибут |
Значение |
wcsncpy() |
Безвредность
в нитях |
MT-Safe |
POSIX.1-2001, POSIX.1-2008, C99.
strncpy(3)
Русский
перевод
этой
страницы
руководства
был сделан
Azamat Hackimov <
[email protected]> и Yuri Kozlov
<
[email protected]>
Этот
перевод
является
бесплатной
документацией;
прочитайте
Стандартную
общественную
лицензию GNU
версии 3
или более
позднюю,
чтобы
узнать об
условиях
авторского
права. Мы не
несем
НИКАКОЙ
ОТВЕТСТВЕННОСТИ.
Если вы
обнаружите
ошибки в
переводе
этой
страницы
руководства,
пожалуйста,
отправьте
электронное
письмо на
[email protected]