File: towlower.3

package info (click to toggle)
manpages-fr 0.9.3-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 7,052 kB
  • ctags: 4
  • sloc: makefile: 58; sh: 8
file content (41 lines) | stat: -rw-r--r-- 1,673 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
.\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
.\"
.\" 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
.\"
.\" Traduction 28/08/2000 par Christophe Blaess (ccb@club-internet.fr)
.\" LDP 1.30
.TH TOWLOWER 3  "28 Aot 2000" "GNU" "Manuel du programmeur Linux"
.SH NOM
towlower \- Conversion d'un caractre large en minuscule.
.SH SYNOPSIS
.nf
.B #include <wctype.h>
.sp
.BI "wint_t towlower (wint_t " wc );
.fi
.SH DESCRIPTION
La fonction \fBtowlower\fP est l'quivalent de \fBtolower\fP pour les caractres larges.
Si \fIwc\fP est un caractre large, il est converti en minuscule. Les caractres sans casse sont
renvoys sans modification. Si \fIwc\fP vaut WEOF, cette fonction renvoie WEOF.
.SH "VALEUR RENVOYE"
La fonction \fBtowlower\fP renvoie le caractre minuscule quivalent de \fIwc\fP, ou WEOF si
\fIwc\fP vaut WEOF.
.SH "CONFORMIT"
ISO/ANSI C, UNIX98
.SH "VOIR AUSSI"
.BR towupper "(3), " towctrans "(3), " iswlower (3)
.SH NOTES
Le comportement de la fonction \fBtowlower\fP dpend de la catgorie LC_CTYPE de la localisation.
Cette fonction n'est pas trs approprie pour traiter les caractres Unicode, car ils existent
en trois casses : "upper", "lower" et "title".
.SH TRADUCTION
Christophe Blaess, 2000.