wcsstr(3) Library Functions Manual wcsstr(3) NOMBRE wcsstr - busca una subcadena en una cadena de caracteres anchos BIBLIOTECA Biblioteca Estandar C (libc, -lc) SINOPSIS #include wchar_t *wcsstr(const wchar_t *haystack, const wchar_t *needle); DESCRIPCION 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 DEVUELTO La funcion wcsspn() devuelve un puntero a la primera aparicion de needle en haystack. Devuelve NULL si needle no aparece como subcadena en haystack. Observe el caso especial: si needle es una cadena de caracteres anchos vacia, el valor devuelto es siempre el mismo haystack. ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +-----------------------------+--------------------+-------------------+ |Interfaz | Atributo | Valor | +-----------------------------+--------------------+-------------------+ |wcsstr() | Seguridad del hilo | Multi-hilo seguro | +-----------------------------+--------------------+-------------------+ ESTANDARES C11, POSIX.1-2008. HISTORIAL POSIX.1-2001, C99. VEASE TAMBIEN strstr(3), wcschr(3) TRADUCCION La traduccion al espanol de esta pagina del manual fue creada por Pedro Pablo Fabrega y Juan Piernas Esta traduccion es documentacion libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD. Si encuentra algun error en la traduccion de esta pagina del manual, envie un correo electronico a . Paginas de manual de Linux 6.06 31 Octubre 2023 wcsstr(3)