/ stdio / scanf_l.3
scanf_l.3
  1  .\" Copyright (c) 1990, 1991, 1993
  2  .\"	The Regents of the University of California.  All rights reserved.
  3  .\"
  4  .\" This code is derived from software contributed to Berkeley by
  5  .\" Chris Torek and the American National Standards Committee X3,
  6  .\" on Information Processing Systems.
  7  .\"
  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  .\"
 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 $
 38  .\"
 39  .Dd March 11, 2005
 40  .Dt SCANF_L 3
 41  .Os
 42  .Sh NAME
 43  .Nm fscanf_l ,
 44  .Nm scanf_l ,
 45  .Nm sscanf_l ,
 46  .Nm vfscanf_l ,
 47  .Nm vscanf_l ,
 48  .Nm vsscanf_l
 49  .Nd input format conversion
 50  .Sh LIBRARY
 51  .Lb libc
 52  .Sh SYNOPSIS
 53  .In stdio.h
 54  .In xlocale.h
 55  .Ft int
 56  .Fo fscanf_l
 57  .Fa "FILE * restrict stream"
 58  .Fa "locale_t loc"
 59  .Fa "const char * restrict format"
 60  .Fa ...
 61  .Fc
 62  .Ft int
 63  .Fo scanf_l
 64  .Fa "locale_t loc"
 65  .Fa "const char * restrict format"
 66  .Fa ...
 67  .Fc
 68  .Ft int
 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
 75  .In stdarg.h
 76  .In xlocale.h
 77  .Ft int
 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
 84  .Ft int
 85  .Fo vscanf_l
 86  .Fa "locale_t loc"
 87  .Fa "const char * restrict format"
 88  .Fa "va_list ap"
 89  .Fc
 90  .Ft int
 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
 97  .Sh DESCRIPTION
 98  The
 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