wcpncpy(3) Library Functions Manual wcpncpy(3) NOME wcpncpy - copia uma string de caracteres largos de tamanho fixo, retornando um ponteiro para o seu final BIBLIOTECA Biblioteca C Padrao (libc, -lc) SINOPSE #include wchar_t *wcpncpy(wchar_t dest[restrict .n], const wchar_t src[restrict .n], size_t n); Requisitos de macro de teste de recursos para o glibc (consulte feature_test_macros(7)): wcpncpy(): Desde o glibc 2.10: _POSIX_C_SOURCE >= 200809L Antes do glibc 2.10: _GNU_SOURCE DESCRICAO The wcpncpy() function is the wide-character equivalent of the stpncpy(3) function. It copies at most n wide characters from the wide-character string pointed to by src, including the terminating null wide (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 L'\0' characters. If the length wcslen(src) is greater than or equal to n, the string pointed to by dest will not be L'\0' terminated. As strings nao podem se sobrepor. O programador deve assegurar que ha espaco para pelo menos n caracteres largos em dest. VALOR DE RETORNO wcpncpy() retorna um ponteiro para os ultimos caracteres largos escritos, isto e, dest+n-1. ATRIBUTOS Para uma explicacao dos termos usados nesta secao, consulte attributes(7). +--------------------------------------------+---------------+---------+ |Interface | Atributo | Valor | +--------------------------------------------+---------------+---------+ |wcpncpy() | Thread safety | MT-Safe | +--------------------------------------------+---------------+---------+ PADROES POSIX.1-2008. VEJA TAMBEM stpncpy(3), wcsncpy(3) TRADUCAO A traducao para portugues brasileiro desta pagina man foi criada por Marcelo D. Beckmann , Andre Luiz Fassone e Rafael Fontenelle . Esta traducao e uma documentacao livre; leia a Licenca Publica Geral GNU Versao 3 ou posterior para as condicoes de direitos autorais. Nenhuma responsabilidade e aceita. Se voce encontrar algum erro na traducao desta pagina de manual, envie um e-mail para a lista de discussao de tradutores . Linux man-pages 6.06 31 outubro 2023 wcpncpy(3)