.\" Copyright (c) Bruno Haible .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as .\" published by the Free Software Foundation; either version 2 of .\" the License, or (at your option) any later version. .\" .\" References consulted: .\" GNU glibc-2 source code and manual .\" Dinkumware C library reference http://www.dinkumware.com/ .\" OpenGroup's Single Unix specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" .\" Translated Sun Apr 23 2000 by Juan Piernas .\" .TH TOWLOWER 3 "25 julio 1999" "GNU" "Manual del Programador de Linux" .SH NOMBRE towlower \- convierte un carácter ancho a minúsculas .SH SINOPSIS .nf .B #include .sp .BI "wint_t towlower (wint_t " wc ); .fi .SH DESCRIPCIÓN La función \fBtowlower\fP es equivalente para caracteres anchos a la función \fBtolower\fP. Si \fIwc\fP es un carácter ancho, se convierte a minúsculas. Los caracteres que no tienen un equivalente en minúsculas se devuelven sin cambiar. Si \fIwc\fP es WEOF, se devuelve WEOF. .SH "VALOR DEVUELTO" La función \fBtowlower\fP devuelve el equivalente en minúsculas de \fIwc\fP, o WEOF si \fIwc\fP es WEOF. .SH "CONFORME A" ISO/ANSI C, UNIX98 .SH "VÉASE TAMBIÉN" .BR towupper "(3), " towctrans "(3), " iswlower (3) .SH OBSERVACIONES El comportamiento de \fBtowlower\fP depende de la categoría LC_CTYPE de la localización actual. .PP Esta función no es muy apropiada para tratar con caracteres Unicode ya que Unicode reconoce tres tamaños: mayúsculas, minúsculas y tamaño de título.