wcslen(3) Library Functions Manual wcslen(3) NOMBRE wcslen - determina la longitud de una cadena de caracteres anchos BIBLIOTECA Biblioteca Estandar C (libc, -lc) SINOPSIS #include size_t wcslen(const wchar_t *s); DESCRIPCION The wcslen() function is the wide-character equivalent of the strlen(3) function. It determines the length of the wide-character string pointed to by s, excluding the terminating null wide character (L'\0'). VALOR DEVUELTO La funcion wcslen() devuelve el numero de caracteres anchos de s. ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +-----------------------------+--------------------+-------------------+ |Interfaz | Atributo | Valor | +-----------------------------+--------------------+-------------------+ |wcslen() | Seguridad del hilo | Multi-hilo seguro | +-----------------------------+--------------------+-------------------+ ESTANDARES C11, POSIX.1-2008. HISTORIAL POSIX.1-2001, C99. NOTAS In cases where the input buffer may not contain a terminating null wide character, wcsnlen(3) should be used instead. VEASE TAMBIEN strlen(3) TRADUCCION La traduccion al espanol de esta pagina del manual fue creada por 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 wcslen(3)