xref: /freebsd/lib/libc/stdio/scanf.3 (revision 76edfabbecdec686a570b8e009d5ea4112f943e0)
158f0484fSRodney W. Grimes.\" Copyright (c) 1990, 1991, 1993
258f0484fSRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
358f0484fSRodney W. Grimes.\"
458f0484fSRodney W. Grimes.\" This code is derived from software contributed to Berkeley by
558f0484fSRodney W. Grimes.\" Chris Torek and the American National Standards Committee X3,
658f0484fSRodney W. Grimes.\" on Information Processing Systems.
758f0484fSRodney W. Grimes.\"
858f0484fSRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
958f0484fSRodney W. Grimes.\" modification, are permitted provided that the following conditions
1058f0484fSRodney W. Grimes.\" are met:
1158f0484fSRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
1258f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
1358f0484fSRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
1458f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
1558f0484fSRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
16fbbd9655SWarner Losh.\" 3. Neither the name of the University nor the names of its contributors
1758f0484fSRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
1858f0484fSRodney W. Grimes.\"    without specific prior written permission.
1958f0484fSRodney W. Grimes.\"
2058f0484fSRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2158f0484fSRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2258f0484fSRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2358f0484fSRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2458f0484fSRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2558f0484fSRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2658f0484fSRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2758f0484fSRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2858f0484fSRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2958f0484fSRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3058f0484fSRodney W. Grimes.\" SUCH DAMAGE.
3158f0484fSRodney W. Grimes.\"
3258f0484fSRodney W. Grimes.\"     @(#)scanf.3	8.2 (Berkeley) 12/11/93
3358f0484fSRodney W. Grimes.\"
34*76edfabbSDag-Erling Smørgrav.Dd August 21, 2023
3558f0484fSRodney W. Grimes.Dt SCANF 3
3658f0484fSRodney W. Grimes.Os
3758f0484fSRodney W. Grimes.Sh NAME
3858f0484fSRodney W. Grimes.Nm scanf ,
3958f0484fSRodney W. Grimes.Nm fscanf ,
4058f0484fSRodney W. Grimes.Nm sscanf ,
4158f0484fSRodney W. Grimes.Nm vscanf ,
4258f0484fSRodney W. Grimes.Nm vsscanf ,
4358f0484fSRodney W. Grimes.Nm vfscanf
4458f0484fSRodney W. Grimes.Nd input format conversion
4525bb73e0SAlexey Zelkin.Sh LIBRARY
4625bb73e0SAlexey Zelkin.Lb libc
4758f0484fSRodney W. Grimes.Sh SYNOPSIS
4832eef9aeSRuslan Ermilov.In stdio.h
4958f0484fSRodney W. Grimes.Ft int
5054e4e385SMike Barcroft.Fn scanf "const char * restrict format" ...
5158f0484fSRodney W. Grimes.Ft int
5254e4e385SMike Barcroft.Fn fscanf "FILE * restrict stream" "const char * restrict format" ...
5358f0484fSRodney W. Grimes.Ft int
5454e4e385SMike Barcroft.Fn sscanf "const char * restrict str" "const char * restrict format" ...
5532eef9aeSRuslan Ermilov.In stdarg.h
5658f0484fSRodney W. Grimes.Ft int
5754e4e385SMike Barcroft.Fn vscanf "const char * restrict format" "va_list ap"
5858f0484fSRodney W. Grimes.Ft int
5954e4e385SMike Barcroft.Fn vsscanf "const char * restrict str" "const char * restrict format" "va_list ap"
6058f0484fSRodney W. Grimes.Ft int
6154e4e385SMike Barcroft.Fn vfscanf "FILE * restrict stream" "const char * restrict format" "va_list ap"
6258f0484fSRodney W. Grimes.Sh DESCRIPTION
6358f0484fSRodney W. GrimesThe
6458f0484fSRodney W. Grimes.Fn scanf
6558f0484fSRodney W. Grimesfamily of functions scans input according to a
6658f0484fSRodney W. Grimes.Fa format
6758f0484fSRodney W. Grimesas described below.
6858f0484fSRodney W. GrimesThis format may contain
6958f0484fSRodney W. Grimes.Em conversion specifiers ;
7058f0484fSRodney W. Grimesthe results from such conversions, if any,
7158f0484fSRodney W. Grimesare stored through the
7258f0484fSRodney W. Grimes.Em pointer
7358f0484fSRodney W. Grimesarguments.
7458f0484fSRodney W. GrimesThe
7558f0484fSRodney W. Grimes.Fn scanf
7658f0484fSRodney W. Grimesfunction
7758f0484fSRodney W. Grimesreads input from the standard input stream
78ae828962SRuslan Ermilov.Dv stdin ,
7958f0484fSRodney W. Grimes.Fn fscanf
8058f0484fSRodney W. Grimesreads input from the stream pointer
8158f0484fSRodney W. Grimes.Fa stream ,
8258f0484fSRodney W. Grimesand
8358f0484fSRodney W. Grimes.Fn sscanf
8458f0484fSRodney W. Grimesreads its input from the character string pointed to by
8558f0484fSRodney W. Grimes.Fa str .
8658f0484fSRodney W. GrimesThe
8758f0484fSRodney W. Grimes.Fn vfscanf
8858f0484fSRodney W. Grimesfunction
8958f0484fSRodney W. Grimesis analogous to
9058f0484fSRodney W. Grimes.Xr vfprintf 3
9158f0484fSRodney W. Grimesand reads input from the stream pointer
9258f0484fSRodney W. Grimes.Fa stream
9358f0484fSRodney W. Grimesusing a variable argument list of pointers (see
9458f0484fSRodney W. Grimes.Xr stdarg 3 ) .
9558f0484fSRodney W. GrimesThe
9658f0484fSRodney W. Grimes.Fn vscanf
9758f0484fSRodney W. Grimesfunction scans a variable argument list from the standard input and
9858f0484fSRodney W. Grimesthe
9958f0484fSRodney W. Grimes.Fn vsscanf
10058f0484fSRodney W. Grimesfunction scans it from a string;
10158f0484fSRodney W. Grimesthese are analogous to
10258f0484fSRodney W. Grimesthe
10358f0484fSRodney W. Grimes.Fn vprintf
10458f0484fSRodney W. Grimesand
10558f0484fSRodney W. Grimes.Fn vsprintf
10658f0484fSRodney W. Grimesfunctions respectively.
10758f0484fSRodney W. GrimesEach successive
10858f0484fSRodney W. Grimes.Em pointer
10958f0484fSRodney W. Grimesargument must correspond properly with
11058f0484fSRodney W. Grimeseach successive conversion specifier
11138261ac8SDima Dorfman(but see the
11238261ac8SDima Dorfman.Cm *
11338261ac8SDima Dorfmanconversion below).
11458f0484fSRodney W. GrimesAll conversions are introduced by the
11558f0484fSRodney W. Grimes.Cm %
11658f0484fSRodney W. Grimes(percent sign) character.
11758f0484fSRodney W. GrimesThe
11858f0484fSRodney W. Grimes.Fa format
11958f0484fSRodney W. Grimesstring
12058f0484fSRodney W. Grimesmay also contain other characters.
12158f0484fSRodney W. GrimesWhite space (such as blanks, tabs, or newlines) in the
12258f0484fSRodney W. Grimes.Fa format
12358f0484fSRodney W. Grimesstring match any amount of white space, including none, in the input.
12458f0484fSRodney W. GrimesEverything else
12558f0484fSRodney W. Grimesmatches only itself.
12658f0484fSRodney W. GrimesScanning stops
12758f0484fSRodney W. Grimeswhen an input character does not match such a format character.
12858f0484fSRodney W. GrimesScanning also stops
12958f0484fSRodney W. Grimeswhen an input conversion cannot be made (see below).
13058f0484fSRodney W. Grimes.Sh CONVERSIONS
13158f0484fSRodney W. GrimesFollowing the
13258f0484fSRodney W. Grimes.Cm %
13358f0484fSRodney W. Grimescharacter introducing a conversion
13458f0484fSRodney W. Grimesthere may be a number of
13558f0484fSRodney W. Grimes.Em flag
13658f0484fSRodney W. Grimescharacters, as follows:
137946b2d00SBill Fenner.Bl -tag -width ".Cm l No (ell)"
13858f0484fSRodney W. Grimes.It Cm *
13958f0484fSRodney W. GrimesSuppresses assignment.
14058f0484fSRodney W. GrimesThe conversion that follows occurs as usual, but no pointer is used;
14158f0484fSRodney W. Grimesthe result of the conversion is simply discarded.
142946b2d00SBill Fenner.It Cm hh
143946b2d00SBill FennerIndicates that the conversion will be one of
144*76edfabbSDag-Erling Smørgrav.Cm bdioux
145946b2d00SBill Fenneror
146946b2d00SBill Fenner.Cm n
147946b2d00SBill Fennerand the next pointer is a pointer to a
148432e57ebSRuslan Ermilov.Vt char
149946b2d00SBill Fenner(rather than
150432e57ebSRuslan Ermilov.Vt int ) .
15158f0484fSRodney W. Grimes.It Cm h
15258f0484fSRodney W. GrimesIndicates that the conversion will be one of
153*76edfabbSDag-Erling Smørgrav.Cm bdioux
15458f0484fSRodney W. Grimesor
15558f0484fSRodney W. Grimes.Cm n
15658f0484fSRodney W. Grimesand the next pointer is a pointer to a
157432e57ebSRuslan Ermilov.Vt "short int"
15858f0484fSRodney W. Grimes(rather than
159432e57ebSRuslan Ermilov.Vt int ) .
160946b2d00SBill Fenner.It Cm l No (ell)
161946b2d00SBill FennerIndicates that the conversion will be one of
162*76edfabbSDag-Erling Smørgrav.Cm bdioux
16358f0484fSRodney W. Grimesor
16458f0484fSRodney W. Grimes.Cm n
16558f0484fSRodney W. Grimesand the next pointer is a pointer to a
166432e57ebSRuslan Ermilov.Vt "long int"
16758f0484fSRodney W. Grimes(rather than
168432e57ebSRuslan Ermilov.Vt int ) ,
169946b2d00SBill Fennerthat the conversion will be one of
170b6b7fb37SDavid Schultz.Cm a , e , f ,
171b6b7fb37SDavid Schultzor
172b6b7fb37SDavid Schultz.Cm g
17358f0484fSRodney W. Grimesand the next pointer is a pointer to
174432e57ebSRuslan Ermilov.Vt double
17558f0484fSRodney W. Grimes(rather than
176432e57ebSRuslan Ermilov.Vt float ) ,
177946b2d00SBill Fenneror that the conversion will be one of
1784712aa3bSTim J. Robbins.Cm c ,
179946b2d00SBill Fenner.Cm s
1804712aa3bSTim J. Robbinsor
1814712aa3bSTim J. Robbins.Cm \&[
182946b2d00SBill Fennerand the next pointer is a pointer to an array of
183432e57ebSRuslan Ermilov.Vt wchar_t
184946b2d00SBill Fenner(rather than
185432e57ebSRuslan Ermilov.Vt char ) .
186946b2d00SBill Fenner.It Cm ll No (ell ell)
187946b2d00SBill FennerIndicates that the conversion will be one of
188*76edfabbSDag-Erling Smørgrav.Cm bdioux
1895e17038fSJordan K. Hubbardor
1905e17038fSJordan K. Hubbard.Cm n
1915e17038fSJordan K. Hubbardand the next pointer is a pointer to a
192432e57ebSRuslan Ermilov.Vt "long long int"
1935e17038fSJordan K. Hubbard(rather than
194432e57ebSRuslan Ermilov.Vt int ) .
195946b2d00SBill Fenner.It Cm L
196946b2d00SBill FennerIndicates that the conversion will be one of
197b6b7fb37SDavid Schultz.Cm a , e , f ,
198946b2d00SBill Fenneror
199946b2d00SBill Fenner.Cm g
200946b2d00SBill Fennerand the next pointer is a pointer to
201432e57ebSRuslan Ermilov.Vt "long double" .
202946b2d00SBill Fenner.It Cm j
203946b2d00SBill FennerIndicates that the conversion will be one of
204*76edfabbSDag-Erling Smørgrav.Cm bdioux
205946b2d00SBill Fenneror
206946b2d00SBill Fenner.Cm n
207946b2d00SBill Fennerand the next pointer is a pointer to a
208432e57ebSRuslan Ermilov.Vt intmax_t
209946b2d00SBill Fenner(rather than
210432e57ebSRuslan Ermilov.Vt int ) .
211946b2d00SBill Fenner.It Cm t
212946b2d00SBill FennerIndicates that the conversion will be one of
213*76edfabbSDag-Erling Smørgrav.Cm bdioux
214946b2d00SBill Fenneror
215946b2d00SBill Fenner.Cm n
216946b2d00SBill Fennerand the next pointer is a pointer to a
217432e57ebSRuslan Ermilov.Vt ptrdiff_t
218946b2d00SBill Fenner(rather than
219432e57ebSRuslan Ermilov.Vt int ) .
220946b2d00SBill Fenner.It Cm z
221946b2d00SBill FennerIndicates that the conversion will be one of
222*76edfabbSDag-Erling Smørgrav.Cm bdioux
223946b2d00SBill Fenneror
224946b2d00SBill Fenner.Cm n
225946b2d00SBill Fennerand the next pointer is a pointer to a
226432e57ebSRuslan Ermilov.Vt size_t
227946b2d00SBill Fenner(rather than
228432e57ebSRuslan Ermilov.Vt int ) .
229946b2d00SBill Fenner.It Cm q
230946b2d00SBill Fenner(deprecated.)
231946b2d00SBill FennerIndicates that the conversion will be one of
232*76edfabbSDag-Erling Smørgrav.Cm bdioux
233946b2d00SBill Fenneror
234946b2d00SBill Fenner.Cm n
235946b2d00SBill Fennerand the next pointer is a pointer to a
236432e57ebSRuslan Ermilov.Vt "long long int"
237946b2d00SBill Fenner(rather than
238432e57ebSRuslan Ermilov.Vt int ) .
23958f0484fSRodney W. Grimes.El
24058f0484fSRodney W. Grimes.Pp
24158f0484fSRodney W. GrimesIn addition to these flags,
24258f0484fSRodney W. Grimesthere may be an optional maximum field width,
24358f0484fSRodney W. Grimesexpressed as a decimal integer,
24458f0484fSRodney W. Grimesbetween the
24558f0484fSRodney W. Grimes.Cm %
24658f0484fSRodney W. Grimesand the conversion.
24758f0484fSRodney W. GrimesIf no width is given,
248432e57ebSRuslan Ermilova default of
249432e57ebSRuslan Ermilov.Dq infinity
250432e57ebSRuslan Ermilovis used (with one exception, below);
2514712aa3bSTim J. Robbinsotherwise at most this many bytes are scanned
25258f0484fSRodney W. Grimesin processing the conversion.
2534712aa3bSTim J. RobbinsIn the case of the
2544712aa3bSTim J. Robbins.Cm lc ,
2554712aa3bSTim J. Robbins.Cm ls
2564712aa3bSTim J. Robbinsand
2574712aa3bSTim J. Robbins.Cm l[
2584712aa3bSTim J. Robbinsconversions, the field width specifies the maximum number
2594712aa3bSTim J. Robbinsof multibyte characters that will be scanned.
26058f0484fSRodney W. GrimesBefore conversion begins,
26158f0484fSRodney W. Grimesmost conversions skip white space;
26258f0484fSRodney W. Grimesthis white space is not counted against the field width.
26358f0484fSRodney W. Grimes.Pp
26458f0484fSRodney W. GrimesThe following conversions are available:
26558f0484fSRodney W. Grimes.Bl -tag -width XXXX
26658f0484fSRodney W. Grimes.It Cm %
267432e57ebSRuslan ErmilovMatches a literal
268432e57ebSRuslan Ermilov.Ql % .
269432e57ebSRuslan ErmilovThat is,
270432e57ebSRuslan Ermilov.Dq Li %%
271432e57ebSRuslan Ermilovin the format string
272432e57ebSRuslan Ermilovmatches a single input
273432e57ebSRuslan Ermilov.Ql %
274432e57ebSRuslan Ermilovcharacter.
27558f0484fSRodney W. GrimesNo conversion is done, and assignment does not occur.
276*76edfabbSDag-Erling Smørgrav.It Cm b , B
277*76edfabbSDag-Erling SmørgravMatches an optionally signed binary integer;
278*76edfabbSDag-Erling Smørgravthe next pointer must be a pointer to
279*76edfabbSDag-Erling Smørgrav.Vt "unsigned int" .
28058f0484fSRodney W. Grimes.It Cm d
28158f0484fSRodney W. GrimesMatches an optionally signed decimal integer;
28258f0484fSRodney W. Grimesthe next pointer must be a pointer to
283432e57ebSRuslan Ermilov.Vt int .
28458f0484fSRodney W. Grimes.It Cm i
28558f0484fSRodney W. GrimesMatches an optionally signed integer;
28658f0484fSRodney W. Grimesthe next pointer must be a pointer to
287432e57ebSRuslan Ermilov.Vt int .
288*76edfabbSDag-Erling SmørgravThe integer is read
289*76edfabbSDag-Erling Smørgravin base 2 if it begins with
290*76edfabbSDag-Erling Smørgrav.Ql 0b
291*76edfabbSDag-Erling Smørgravor
292*76edfabbSDag-Erling Smørgrav.Ql 0B ,
293*76edfabbSDag-Erling Smørgravin base 16 if it begins
29458f0484fSRodney W. Grimeswith
29558f0484fSRodney W. Grimes.Ql 0x
29658f0484fSRodney W. Grimesor
29758f0484fSRodney W. Grimes.Ql 0X ,
29858f0484fSRodney W. Grimesin base 8 if it begins with
29958f0484fSRodney W. Grimes.Ql 0 ,
30058f0484fSRodney W. Grimesand in base 10 otherwise.
30158f0484fSRodney W. GrimesOnly characters that correspond to the base are used.
30258f0484fSRodney W. Grimes.It Cm o
30358f0484fSRodney W. GrimesMatches an octal integer;
30458f0484fSRodney W. Grimesthe next pointer must be a pointer to
305432e57ebSRuslan Ermilov.Vt "unsigned int" .
30658f0484fSRodney W. Grimes.It Cm u
30758f0484fSRodney W. GrimesMatches an optionally signed decimal integer;
30858f0484fSRodney W. Grimesthe next pointer must be a pointer to
309432e57ebSRuslan Ermilov.Vt "unsigned int" .
310946b2d00SBill Fenner.It Cm x , X
31158f0484fSRodney W. GrimesMatches an optionally signed hexadecimal integer;
31258f0484fSRodney W. Grimesthe next pointer must be a pointer to
313432e57ebSRuslan Ermilov.Vt "unsigned int" .
314b6b7fb37SDavid Schultz.It Cm a , A , e , E , f , F , g , G
315b6b7fb37SDavid SchultzMatches a floating-point number in the style of
316b6b7fb37SDavid Schultz.Xr strtod 3 .
317b6b7fb37SDavid SchultzThe next pointer must be a pointer to
318b6b7fb37SDavid Schultz.Vt float
319b6b7fb37SDavid Schultz(unless
320b6b7fb37SDavid Schultz.Cm l
321b6b7fb37SDavid Schultzor
322b6b7fb37SDavid Schultz.Cm L
323b6b7fb37SDavid Schultzis specified.)
32458f0484fSRodney W. Grimes.It Cm s
32558f0484fSRodney W. GrimesMatches a sequence of non-white-space characters;
32658f0484fSRodney W. Grimesthe next pointer must be a pointer to
327432e57ebSRuslan Ermilov.Vt char ,
32858f0484fSRodney W. Grimesand the array must be large enough to accept all the sequence and the
32958f0484fSRodney W. Grimesterminating
33058f0484fSRodney W. Grimes.Dv NUL
33158f0484fSRodney W. Grimescharacter.
33258f0484fSRodney W. GrimesThe input string stops at white space
33358f0484fSRodney W. Grimesor at the maximum field width, whichever occurs first.
3344712aa3bSTim J. Robbins.Pp
3354712aa3bSTim J. RobbinsIf an
3364712aa3bSTim J. Robbins.Cm l
3374712aa3bSTim J. Robbinsqualifier is present, the next pointer must be a pointer to
3384712aa3bSTim J. Robbins.Vt wchar_t ,
3394712aa3bSTim J. Robbinsinto which the input will be placed after conversion by
3404712aa3bSTim J. Robbins.Xr mbrtowc 3 .
341946b2d00SBill Fenner.It Cm S
342946b2d00SBill FennerThe same as
343946b2d00SBill Fenner.Cm ls .
34458f0484fSRodney W. Grimes.It Cm c
34558f0484fSRodney W. GrimesMatches a sequence of
34658f0484fSRodney W. Grimes.Em width
34758f0484fSRodney W. Grimescount
34858f0484fSRodney W. Grimescharacters (default 1);
34958f0484fSRodney W. Grimesthe next pointer must be a pointer to
350432e57ebSRuslan Ermilov.Vt char ,
35158f0484fSRodney W. Grimesand there must be enough room for all the characters
35258f0484fSRodney W. Grimes(no terminating
35358f0484fSRodney W. Grimes.Dv NUL
35458f0484fSRodney W. Grimesis added).
35558f0484fSRodney W. GrimesThe usual skip of leading white space is suppressed.
35658f0484fSRodney W. GrimesTo skip white space first, use an explicit space in the format.
3574712aa3bSTim J. Robbins.Pp
3584712aa3bSTim J. RobbinsIf an
3594712aa3bSTim J. Robbins.Cm l
3604712aa3bSTim J. Robbinsqualifier is present, the next pointer must be a pointer to
3614712aa3bSTim J. Robbins.Vt wchar_t ,
3624712aa3bSTim J. Robbinsinto which the input will be placed after conversion by
3634712aa3bSTim J. Robbins.Xr mbrtowc 3 .
364946b2d00SBill Fenner.It Cm C
365946b2d00SBill FennerThe same as
366946b2d00SBill Fenner.Cm lc .
36758f0484fSRodney W. Grimes.It Cm \&[
36858f0484fSRodney W. GrimesMatches a nonempty sequence of characters from the specified set
36958f0484fSRodney W. Grimesof accepted characters;
37058f0484fSRodney W. Grimesthe next pointer must be a pointer to
371432e57ebSRuslan Ermilov.Vt char ,
37258f0484fSRodney W. Grimesand there must be enough room for all the characters in the string,
37358f0484fSRodney W. Grimesplus a terminating
37458f0484fSRodney W. Grimes.Dv NUL
37558f0484fSRodney W. Grimescharacter.
37658f0484fSRodney W. GrimesThe usual skip of leading white space is suppressed.
37758f0484fSRodney W. GrimesThe string is to be made up of characters in
37858f0484fSRodney W. Grimes(or not in)
37958f0484fSRodney W. Grimesa particular set;
38058f0484fSRodney W. Grimesthe set is defined by the characters between the open bracket
381790752beSJoel Dahl.Cm \&[
38258f0484fSRodney W. Grimescharacter
38358f0484fSRodney W. Grimesand a close bracket
384790752beSJoel Dahl.Cm \&]
38558f0484fSRodney W. Grimescharacter.
38658f0484fSRodney W. GrimesThe set
38758f0484fSRodney W. Grimes.Em excludes
38858f0484fSRodney W. Grimesthose characters
38958f0484fSRodney W. Grimesif the first character after the open bracket is a circumflex
39058f0484fSRodney W. Grimes.Cm ^ .
39158f0484fSRodney W. GrimesTo include a close bracket in the set,
39258f0484fSRodney W. Grimesmake it the first character after the open bracket
39358f0484fSRodney W. Grimesor the circumflex;
39458f0484fSRodney W. Grimesany other position will end the set.
39558f0484fSRodney W. GrimesThe hyphen character
39658f0484fSRodney W. Grimes.Cm -
39758f0484fSRodney W. Grimesis also special;
39858f0484fSRodney W. Grimeswhen placed between two other characters,
39958f0484fSRodney W. Grimesit adds all intervening characters to the set.
40058f0484fSRodney W. GrimesTo include a hyphen,
40158f0484fSRodney W. Grimesmake it the last character before the final close bracket.
40258f0484fSRodney W. GrimesFor instance,
40358f0484fSRodney W. Grimes.Ql [^]0-9-]
404432e57ebSRuslan Ermilovmeans the set
405432e57ebSRuslan Ermilov.Dq "everything except close bracket, zero through nine, and hyphen" .
40658f0484fSRodney W. GrimesThe string ends with the appearance of a character not in the
40758f0484fSRodney W. Grimes(or, with a circumflex, in) set
40858f0484fSRodney W. Grimesor when the field width runs out.
4094712aa3bSTim J. Robbins.Pp
4104712aa3bSTim J. RobbinsIf an
4114712aa3bSTim J. Robbins.Cm l
4124712aa3bSTim J. Robbinsqualifier is present, the next pointer must be a pointer to
4134712aa3bSTim J. Robbins.Vt wchar_t ,
4144712aa3bSTim J. Robbinsinto which the input will be placed after conversion by
4154712aa3bSTim J. Robbins.Xr mbrtowc 3 .
41658f0484fSRodney W. Grimes.It Cm p
41758f0484fSRodney W. GrimesMatches a pointer value (as printed by
41858f0484fSRodney W. Grimes.Ql %p
41958f0484fSRodney W. Grimesin
42058f0484fSRodney W. Grimes.Xr printf 3 ) ;
42158f0484fSRodney W. Grimesthe next pointer must be a pointer to
422432e57ebSRuslan Ermilov.Vt void .
42358f0484fSRodney W. Grimes.It Cm n
42458f0484fSRodney W. GrimesNothing is expected;
42558f0484fSRodney W. Grimesinstead, the number of characters consumed thus far from the input
42658f0484fSRodney W. Grimesis stored through the next pointer,
42758f0484fSRodney W. Grimeswhich must be a pointer to
428432e57ebSRuslan Ermilov.Vt int .
42958f0484fSRodney W. GrimesThis is
43058f0484fSRodney W. Grimes.Em not
43158f0484fSRodney W. Grimesa conversion, although it can be suppressed with the
43258f0484fSRodney W. Grimes.Cm *
43358f0484fSRodney W. Grimesflag.
43458f0484fSRodney W. Grimes.El
43558f0484fSRodney W. Grimes.Pp
43636db5680SAndrey A. ChernovThe decimal point
437429d919cSRuslan Ermilovcharacter is defined in the program's locale (category
438429d919cSRuslan Ermilov.Dv LC_NUMERIC ) .
43936db5680SAndrey A. Chernov.Pp
440432e57ebSRuslan ErmilovFor backwards compatibility, a
441432e57ebSRuslan Ermilov.Dq conversion
442432e57ebSRuslan Ermilovof
44358f0484fSRodney W. Grimes.Ql %\e0
44458f0484fSRodney W. Grimescauses an immediate return of
44558f0484fSRodney W. Grimes.Dv EOF .
44658f0484fSRodney W. Grimes.Sh RETURN VALUES
44758f0484fSRodney W. GrimesThese
44858f0484fSRodney W. Grimesfunctions
44958f0484fSRodney W. Grimesreturn
45058f0484fSRodney W. Grimesthe number of input items assigned, which can be fewer than provided
45158f0484fSRodney W. Grimesfor, or even zero, in the event of a matching failure.
45258f0484fSRodney W. GrimesZero
45358f0484fSRodney W. Grimesindicates that, while there was input available,
45458f0484fSRodney W. Grimesno conversions were assigned;
45558f0484fSRodney W. Grimestypically this is due to an invalid input character,
45658f0484fSRodney W. Grimessuch as an alphabetic character for a
45758f0484fSRodney W. Grimes.Ql %d
45858f0484fSRodney W. Grimesconversion.
45958f0484fSRodney W. GrimesThe value
46058f0484fSRodney W. Grimes.Dv EOF
46158f0484fSRodney W. Grimesis returned if an input failure occurs before any conversion such as an
462c6ff3a1bSSheldon Hearnend-of-file occurs.
463c6ff3a1bSSheldon HearnIf an error or end-of-file occurs after conversion
46458f0484fSRodney W. Grimeshas begun,
46558f0484fSRodney W. Grimesthe number of conversions which were successfully completed is returned.
46658f0484fSRodney W. Grimes.Sh SEE ALSO
46758f0484fSRodney W. Grimes.Xr getc 3 ,
46838b5abadSTim J. Robbins.Xr mbrtowc 3 ,
46975141cc9SWolfram Schneider.Xr printf 3 ,
47075141cc9SWolfram Schneider.Xr strtod 3 ,
47175141cc9SWolfram Schneider.Xr strtol 3 ,
47238b5abadSTim J. Robbins.Xr strtoul 3 ,
47338b5abadSTim J. Robbins.Xr wscanf 3
47458f0484fSRodney W. Grimes.Sh STANDARDS
47558f0484fSRodney W. GrimesThe functions
47658f0484fSRodney W. Grimes.Fn fscanf ,
47758f0484fSRodney W. Grimes.Fn scanf ,
4785a7405beSTim J. Robbins.Fn sscanf ,
4795a7405beSTim J. Robbins.Fn vfscanf ,
4805a7405beSTim J. Robbins.Fn vscanf
48158f0484fSRodney W. Grimesand
4825a7405beSTim J. Robbins.Fn vsscanf
48358f0484fSRodney W. Grimesconform to
484946b2d00SBill Fenner.St -isoC-99 .
4854b7f35dbSGordon Bergling.Sh HISTORY
4864b7f35dbSGordon BerglingThe functions
4874b7f35dbSGordon Bergling.Fn scanf ,
4884b7f35dbSGordon Bergling.Fn fscanf ,
4894b7f35dbSGordon Berglingand
4904b7f35dbSGordon Bergling.Fn sscanf
4914b7f35dbSGordon Berglingfirst appeared in
4924b7f35dbSGordon Bergling.At v7 ,
4934b7f35dbSGordon Berglingand
4944b7f35dbSGordon Bergling.Fn vscanf ,
4954b7f35dbSGordon Bergling.Fn vsscanf ,
4964b7f35dbSGordon Berglingand
4974b7f35dbSGordon Bergling.Fn vfscanf
4984b7f35dbSGordon Berglingin
4994b7f35dbSGordon Bergling.Bx 4.3 Reno .
50058f0484fSRodney W. Grimes.Sh BUGS
501946b2d00SBill FennerEarlier implementations of
502946b2d00SBill Fenner.Nm
503946b2d00SBill Fennertreated
504946b2d00SBill Fenner.Cm \&%D , \&%E , \&%F , \&%O
50558f0484fSRodney W. Grimesand
506946b2d00SBill Fenner.Cm \&%X
507946b2d00SBill Fenneras their lowercase equivalents with an
508946b2d00SBill Fenner.Cm l
509432e57ebSRuslan Ermilovmodifier.
510432e57ebSRuslan ErmilovIn addition,
511946b2d00SBill Fenner.Nm
512946b2d00SBill Fennertreated an unknown conversion character as
513946b2d00SBill Fenner.Cm \&%d
514946b2d00SBill Fenneror
515946b2d00SBill Fenner.Cm \&%D ,
516432e57ebSRuslan Ermilovdepending on its case.
517432e57ebSRuslan ErmilovThis functionality has been removed.
51858f0484fSRodney W. Grimes.Pp
51958f0484fSRodney W. GrimesNumerical strings are truncated to 512 characters; for example,
52058f0484fSRodney W. Grimes.Cm %f
52158f0484fSRodney W. Grimesand
52258f0484fSRodney W. Grimes.Cm %d
52358f0484fSRodney W. Grimesare implicitly
52458f0484fSRodney W. Grimes.Cm %512f
52558f0484fSRodney W. Grimesand
52658f0484fSRodney W. Grimes.Cm %512d .
527946b2d00SBill Fenner.Pp
528946b2d00SBill FennerThe
529946b2d00SBill Fenner.Cm %n$
530946b2d00SBill Fennermodifiers for positional arguments are not implemented.
531946b2d00SBill Fenner.Pp
532946b2d00SBill FennerThe
533e2b090f3STim J. Robbins.Nm
534e2b090f3STim J. Robbinsfamily of functions do not correctly handle multibyte characters in the
535e2b090f3STim J. Robbins.Fa format
536e2b090f3STim J. Robbinsargument.
537