strlen(3) Library Functions Manual strlen(3) NOMBRE strlen - calcula la longitud de una cadena de caracteres BIBLIOTECA Biblioteca Estandar C (libc, -lc) SINOPSIS #include size_t strlen(const char *s); DESCRIPCION The strlen() function calculates the length of the string pointed to by s, excluding the terminating null byte ('\0'). VALOR DEVUELTO The strlen() function returns the number of bytes in the string pointed to by s. ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +-----------------------------+--------------------+-------------------+ |Interfaz | Atributo | Valor | +-----------------------------+--------------------+-------------------+ |strlen() | Seguridad del hilo | Multi-hilo seguro | +-----------------------------+--------------------+-------------------+ ESTANDARES C11, POSIX.1-2008. HISTORIAL POSIX.1-2001, C89, SVr4, 4.3BSD. NOTAS In cases where the input buffer may not contain a terminating null byte, strnlen(3) should be used instead. VEASE TAMBIEN string(3), strnlen(3), wcslen(3), wcsnlen(3) TRADUCCION La traduccion al espanol de esta pagina del manual fue creada por Gerardo Aburruzaga Garcia 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 strlen(3)