File: wctrans.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 (46 lines) | stat: -rw-r--r-- 1,963 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
42
43
44
45
46
.\" 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 29/08/2000 par Christophe Blaess (ccb@club-internet.fr)
.\" LDP 1.30
.TH WCTRANS 3  "29 Aot 2000" "GNU" "Manuel du programmeur Linux"
.SH NOM
wctrans \- Descripteur de transposition des caractres larges.
.SH SYNOPSIS
.nf
.B #include <wctype.h>
.sp
.BI "wctrans_t wctrans (const char *" nom );
.fi
.SH DESCRIPTION
Le type \fBwctrans_t\fP reprsente un descripteur de transposition permettant de transformer un caractre
large en un autre. Le dtail de son implmentation peut varier, mais la valeur spciale \fI(wctrans_t)0\fP
indique une transformation invalide. Les valeurs non-nulles de \fBwctrans_t\fP peut tre transmises 
la fonction \fBtowctrans\fP pour faire la transposition relle.
.PP
La fonction \fBwctrans\fP renvoie un descripteur de transposition  partir de son nom. Les noms valides dpendent
de la catgorie LC_CTYPE de la localisation, mais les noms suivants sont toujours valides :
.nf
  "tolower" - effectue la transformation \fBtolower\fP(3)
  "toupper" - effectue la transformation \fBtoupper\fP(3)
.fi
.SH "VALEUR RENVOYE"
La fonction \fBwctrans\fP renvoie un descripteur de transposition si le \fInom\fP est valide. Sinon elle renvoie \fI(wctrans_t)0\fP.
.SH "CONFORMIT"
ISO/ANSI C, UNIX98
.SH "VOIR AUSSI"
.BR towctrans (3)
.SH NOTES
Le comportement de \fBwctrans\fP dpend de la catgorie LC_CTYPE de la localisation.
.SH TRADUCTION
Christophe Blaess, 2000.