]>
Commit | Line | Data |
---|---|---|
3d9156a7 | 1 | .\" Copyright (c) 1990, 1991, 1993 |
e9ce8d39 A |
2 | .\" The Regents of the University of California. All rights reserved. |
3 | .\" | |
5b2abdfb | 4 | .\" This code is derived from software contributed to Berkeley by |
3d9156a7 A |
5 | .\" Chris Torek and the American National Standards Committee X3, |
6 | .\" on Information Processing Systems. | |
5b2abdfb | 7 | .\" |
e9ce8d39 A |
8 | .\" Redistribution and use in source and binary forms, with or without |
9 | .\" modification, are permitted provided that the following conditions | |
10 | .\" are met: | |
11 | .\" 1. Redistributions of source code must retain the above copyright | |
12 | .\" notice, this list of conditions and the following disclaimer. | |
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | |
14 | .\" notice, this list of conditions and the following disclaimer in the | |
15 | .\" documentation and/or other materials provided with the distribution. | |
16 | .\" 3. All advertising materials mentioning features or use of this software | |
17 | .\" must display the following acknowledgement: | |
18 | .\" This product includes software developed by the University of | |
19 | .\" California, Berkeley and its contributors. | |
20 | .\" 4. Neither the name of the University nor the names of its contributors | |
21 | .\" may be used to endorse or promote products derived from this software | |
22 | .\" without specific prior written permission. | |
23 | .\" | |
24 | .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
25 | .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
26 | .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
27 | .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
28 | .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
29 | .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
30 | .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
31 | .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
32 | .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
34 | .\" SUCH DAMAGE. | |
35 | .\" | |
3d9156a7 A |
36 | .\" @(#)scanf.3 8.2 (Berkeley) 12/11/93 |
37 | .\" $FreeBSD: src/lib/libc/stdio/scanf.3,v 1.24 2003/06/28 09:03:25 das Exp $ | |
e9ce8d39 | 38 | .\" |
3d9156a7 A |
39 | .Dd March 11, 2005 |
40 | .Dt SCANF_L 3 | |
e9ce8d39 A |
41 | .Os |
42 | .Sh NAME | |
3d9156a7 | 43 | .Nm fscanf_l , |
224c7076 | 44 | .Nm scanf_l , |
3d9156a7 | 45 | .Nm sscanf_l , |
224c7076 | 46 | .Nm vfscanf_l , |
3d9156a7 | 47 | .Nm vscanf_l , |
224c7076 | 48 | .Nm vsscanf_l |
3d9156a7 A |
49 | .Nd input format conversion |
50 | .Sh LIBRARY | |
51 | .Lb libc | |
e9ce8d39 | 52 | .Sh SYNOPSIS |
3d9156a7 A |
53 | .In stdio.h |
54 | .In xlocale.h | |
55 | .Ft int | |
224c7076 A |
56 | .Fo fscanf_l |
57 | .Fa "FILE * restrict stream" | |
58 | .Fa "locale_t loc" | |
59 | .Fa "const char * restrict format" | |
60 | .Fa ... | |
61 | .Fc | |
3d9156a7 | 62 | .Ft int |
224c7076 A |
63 | .Fo scanf_l |
64 | .Fa "locale_t loc" | |
65 | .Fa "const char * restrict format" | |
66 | .Fa ... | |
67 | .Fc | |
3d9156a7 | 68 | .Ft int |
224c7076 A |
69 | .Fo sscanf_l |
70 | .Fa "const char * restrict str" | |
71 | .Fa "locale_t loc" | |
72 | .Fa "const char * restrict format" | |
73 | .Fa ... | |
74 | .Fc | |
3d9156a7 | 75 | .In stdarg.h |
224c7076 | 76 | .In xlocale.h |
3d9156a7 | 77 | .Ft int |
224c7076 A |
78 | .Fo vfscanf_l |
79 | .Fa "FILE * restrict stream" | |
80 | .Fa "locale_t loc" | |
81 | .Fa "const char * restrict format" | |
82 | .Fa "va_list ap" | |
83 | .Fc | |
3d9156a7 | 84 | .Ft int |
224c7076 A |
85 | .Fo vscanf_l |
86 | .Fa "locale_t loc" | |
87 | .Fa "const char * restrict format" | |
88 | .Fa "va_list ap" | |
89 | .Fc | |
3d9156a7 | 90 | .Ft int |
224c7076 A |
91 | .Fo vsscanf_l |
92 | .Fa "const char * restrict str" | |
93 | .Fa "locale_t loc" | |
94 | .Fa "const char * restrict format" | |
95 | .Fa "va_list ap" | |
96 | .Fc | |
e9ce8d39 A |
97 | .Sh DESCRIPTION |
98 | The | |
3d9156a7 A |
99 | .Fn scanf_l , |
100 | .Fn fscanf_l , | |
101 | .Fn sscanf_l , | |
102 | .Fn vscanf_l , | |
103 | .Fn vsscanf_l , | |
104 | and | |
105 | .Fn vfscanf_l | |
106 | functions are extended locale versions of the | |
107 | .Fn scanf , | |
108 | .Fn fscanf , | |
109 | .Fn sscanf , | |
110 | .Fn vscanf , | |
111 | .Fn vsscanf , | |
112 | and | |
113 | .Fn vfscanf | |
114 | functions, respectively. | |
115 | Refer to their manual pages for details. | |
116 | Also, see | |
117 | .Xr xlocale 3 for more information about extended locales. | |
118 | .Sh SEE ALSO | |
119 | .Xr scanf 3 , | |
120 | .Xr xlocale 3 |