table of contents
- bookworm 4.18.1-1
- bookworm-backports 4.24.0-2~bpo12+1
- testing 4.24.0-2
- unstable 4.24.0-2
wcsstr(3) | Library Functions Manual | wcsstr(3) |
NOME¶
wcsstr - localiza uma substring em uma string de caracteres largos
BIBLIOTECA¶
Biblioteca C Padrão (libc, -lc)
SINOPSE¶
#include <wchar.h>
wchar_t *wcsstr(const wchar_t *palheiro, const wchar_t *agulha);
DESCRIÇÃO¶
The wcsstr() function is the wide-character equivalent of the strstr(3) function. It searches for the first occurrence of the wide-character string needle (without its terminating null wide character (L'\0')) as a substring in the wide-character string haystack.
VALOR DE RETORNO¶
A função wcsstr() retorna um ponteiro para a primeira ocorrência de agulha em palheiro. Retorna NULO se agulha não for encontrada como uma substring em palheiro.
Note o caso especial: Se agulha é uma string de caracteres largos vazia, o valor de retorno é sempre palheiro em si.
ATRIBUTOS¶
Para uma explicação dos termos usados nesta seção, consulte attributes(7).
Interface | Atributo | Valor |
wcsstr() | Thread safety | MT-Safe |
PADRÕES¶
POSIX.1-2001, POSIX.1-2008, C99.
VEJA TAMBÉM¶
TRADUÇÃO¶
A tradução para português brasileiro desta página man foi criada por Marcelo D. Beckmann <marcelobeckmann@yahoo.com>, André Luiz Fassone <lonely_wolf@ig.com.br> e Rafael Fontenelle <rafaelff@gnome.org>.
Esta tradução é uma documentação livre; leia a Licença Pública Geral GNU Versão 3 ou posterior para as condições de direitos autorais. Nenhuma responsabilidade é aceita.
Se você encontrar algum erro na tradução desta página de manual, envie um e-mail para a lista de discussão de tradutores.
5 fevereiro 2023 | Linux man-pages 6.03 |