wcpncpyのヘルプ・マニュアル
日本語 英語
wcpncpy --help
man wcpncpy
WCPNCPY(3) Linux Programmer’s Manual WCPNCPY(3)
名前
wcpncpy - 固定長のワイド文字文字列をコピーし、その末尾を指すポインタを
返す
書式
#define _GNU_SOURCE
#include
wchar_t *wcpncpy(wchar_t *dest, const wchar_t *src, size_t n);
説明
wcpncpy() 関数は、 stpncpy(3) 関数に対応するワイド文字関数である。こ の
関 数は、src が指すワイド文字文字列から dest が指すワイド文字文字列に、
終端の L'\0' を含めて最大 n 文字を コピーする。ちょうど n 個のワイド 文
字 が dest にコピーされる。つまり、 wcslen(src) の長さが n より小さけれ
ば、dest が指す配列中の残りのワイド文字は L'\0' 文字で埋められる。も し
wcslen(src) の長さが n 以上ならば、dest が指す文字列は L'\0' で終端しな
い。
2 つの文字列は重なっていてはならない。
プログラマは、少なくとも n 個のワイド文字を格納できる領域を dest に確保
しなければならない。
返り値
wcpncpy() は、最後に書き込まれたワイド文字へのポインタ、すなわち dest +
n - 1 を返す。
準拠
この関数は GNU 拡張である。
関連項目
stpncpy(3), wcsncpy(3), feature_test_macros(7)
GNU 2003-11-01 WCPNCPY(3)
WCPNCPY(3) Linux Programmer’s Manual WCPNCPY(3)
NAME
wcpncpy - copy a fixed-size string of wide characters, returning a
pointer to its end
SYNOPSIS
#define _GNU_SOURCE
#include
wchar_t *wcpncpy(wchar_t *dest, const wchar_t *src, size_t n);
DESCRIPTION
The wcpncpy() function is the wide-character equivalent of the stp-
ncpy(3) function. It copies at most n wide characters from the wide-
character string pointed to by src, including the terminating L'\0'
character, 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 L'\0' characters. If the length wcslen(src) is greater or equal
to n, the string pointed to by dest will not be L'\0' terminated.
The strings may not overlap.
The programmer must ensure that there is room for at least n wide char-
acters at dest.
RETURN VALUE
wcpncpy() returns a pointer to the last wide character written, that
is, dest + n - 1.
CONFORMING TO
This function is a GNU extension.
SEE ALSO
stpncpy(3), wcsncpy(3), feature_test_macros(7)
COLOPHON
This page is part of release 3.22 of the Linux man-pages project. A
description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
GNU 2003-11-01 WCPNCPY(3)