towlower(3) Library Functions Manual towlower(3) NOMBRE towlower, tolower_l - convierte un caracter ancho a minusculas BIBLIOTECA Biblioteca Estandar C (libc, -lc) SINOPSIS #include wint_t towlower(wint_t wc); wint_t towlower_l(wint_t wc, locale_t localizacion); Requisitos de Macros de Prueba de Caracteristicas para glibc (vease feature_test_macros(7)): towlower_l(): Desde glibc 2.10: _XOPEN_SOURCE >= 700 Antes de glibc 2.10: _GNU_SOURCE DESCRIPCION La funcion towlower() es equivalente para caracteres anchos a la funcion tolower(3). Si wc es un caracter ancho en mayusculas, se convierte a minusculas si existe ese equivalente en la localizacion empleada, devolviendo el equivalente en minusculas de wc. En cualquier otro caso, se devuelve wc sin cambios. The towlower_l() function performs the same task, but performs the conversion based on the character type information in the locale specified by locale. The behavior of towlower_l() is undefined if locale is the special locale object LC_GLOBAL_LOCALE (see duplocale(3)) or is not a valid locale object handle. The argument wc must be representable as a wchar_t and be a valid character in the locale or be the value WEOF. VALOR DEVUELTO If wc was convertible to lowercase, towlower() returns its lowercase equivalent; otherwise it returns wc. ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +-------------+--------------------+-----------------------------------------------+ |Interfaz | Atributo | Valor | +-------------+--------------------+-----------------------------------------------+ |towlower() | Seguridad del hilo | Configuracion regional de multi-hilo seguro | +-------------+--------------------+-----------------------------------------------+ |towlower_l() | Seguridad del hilo | Multi-hilo seguro | +-------------+--------------------+-----------------------------------------------+ ESTANDARES towlower() C11, POSIX.1-2008 (XSI). towlower_l() POSIX.1-2008. ESTANDARES towlower() C99, POSIX.1-2001 (XSI). Obsolete in POSIX.1-2008 (XSI). towlower_l() glibc 2.3. POSIX.1-2008. NOTAS El comportamiento de estas funciones depende de la categoria LC_CTYPE de la localizacion. These functions are not very appropriate for dealing with Unicode characters, because Unicode knows about three cases: upper, lower, and title case. VEASE TAMBIEN iswlower(3), towctrans(3), towupper(3), locale(7) TRADUCCION La traduccion al espanol de esta pagina del manual fue creada por Juan Piernas y Marcos Fouces 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 towlower(3)