xref: /freebsd/lib/libc/stdio/scanf.3 (revision fbbd9655e5107c68e4e0146ff22b73d7350475bc)
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.
16*fbbd9655SWarner 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
337f3dea24SPeter Wemm.\" $FreeBSD$
3458f0484fSRodney W. Grimes.\"
35e2b090f3STim J. Robbins.Dd January 4, 2003
3658f0484fSRodney W. Grimes.Dt SCANF 3
3758f0484fSRodney W. Grimes.Os
3858f0484fSRodney W. Grimes.Sh NAME
3958f0484fSRodney W. Grimes.Nm scanf ,
4058f0484fSRodney W. Grimes.Nm fscanf ,
4158f0484fSRodney W. Grimes.Nm sscanf ,
4258f0484fSRodney W. Grimes.Nm vscanf ,
4358f0484fSRodney W. Grimes.Nm vsscanf ,
4458f0484fSRodney W. Grimes.Nm vfscanf
4558f0484fSRodney W. Grimes.Nd input format conversion
4625bb73e0SAlexey Zelkin.Sh LIBRARY
4725bb73e0SAlexey Zelkin.Lb libc
4858f0484fSRodney W. Grimes.Sh SYNOPSIS
4932eef9aeSRuslan Ermilov.In stdio.h
5058f0484fSRodney W. Grimes.Ft int
5154e4e385SMike Barcroft.Fn scanf "const char * restrict format" ...
5258f0484fSRodney W. Grimes.Ft int
5354e4e385SMike Barcroft.Fn fscanf "FILE * restrict stream" "const char * restrict format" ...
5458f0484fSRodney W. Grimes.Ft int
5554e4e385SMike Barcroft.Fn sscanf "const char * restrict str" "const char * restrict format" ...
5632eef9aeSRuslan Ermilov.In stdarg.h
5758f0484fSRodney W. Grimes.Ft int
5854e4e385SMike Barcroft.Fn vscanf "const char * restrict format" "va_list ap"
5958f0484fSRodney W. Grimes.Ft int
6054e4e385SMike Barcroft.Fn vsscanf "const char * restrict str" "const char * restrict format" "va_list ap"
6158f0484fSRodney W. Grimes.Ft int
6254e4e385SMike Barcroft.Fn vfscanf "FILE * restrict stream" "const char * restrict format" "va_list ap"
6358f0484fSRodney W. Grimes.Sh DESCRIPTION
6458f0484fSRodney W. GrimesThe
6558f0484fSRodney W. Grimes.Fn scanf
6658f0484fSRodney W. Grimesfamily of functions scans input according to a
6758f0484fSRodney W. Grimes.Fa format
6858f0484fSRodney W. Grimesas described below.
6958f0484fSRodney W. GrimesThis format may contain
7058f0484fSRodney W. Grimes.Em conversion specifiers ;
7158f0484fSRodney W. Grimesthe results from such conversions, if any,
7258f0484fSRodney W. Grimesare stored through the
7358f0484fSRodney W. Grimes.Em pointer
7458f0484fSRodney W. Grimesarguments.
7558f0484fSRodney W. GrimesThe
7658f0484fSRodney W. Grimes.Fn scanf
7758f0484fSRodney W. Grimesfunction
7858f0484fSRodney W. Grimesreads input from the standard input stream
79ae828962SRuslan Ermilov.Dv stdin ,
8058f0484fSRodney W. Grimes.Fn fscanf
8158f0484fSRodney W. Grimesreads input from the stream pointer
8258f0484fSRodney W. Grimes.Fa stream ,
8358f0484fSRodney W. Grimesand
8458f0484fSRodney W. Grimes.Fn sscanf
8558f0484fSRodney W. Grimesreads its input from the character string pointed to by
8658f0484fSRodney W. Grimes.Fa str .
8758f0484fSRodney W. GrimesThe
8858f0484fSRodney W. Grimes.Fn vfscanf
8958f0484fSRodney W. Grimesfunction
9058f0484fSRodney W. Grimesis analogous to
9158f0484fSRodney W. Grimes.Xr vfprintf 3
9258f0484fSRodney W. Grimesand reads input from the stream pointer
9358f0484fSRodney W. Grimes.Fa stream
9458f0484fSRodney W. Grimesusing a variable argument list of pointers (see
9558f0484fSRodney W. Grimes.Xr stdarg 3 ) .
9658f0484fSRodney W. GrimesThe
9758f0484fSRodney W. Grimes.Fn vscanf
9858f0484fSRodney W. Grimesfunction scans a variable argument list from the standard input and
9958f0484fSRodney W. Grimesthe
10058f0484fSRodney W. Grimes.Fn vsscanf
10158f0484fSRodney W. Grimesfunction scans it from a string;
10258f0484fSRodney W. Grimesthese are analogous to
10358f0484fSRodney W. Grimesthe
10458f0484fSRodney W. Grimes.Fn vprintf
10558f0484fSRodney W. Grimesand
10658f0484fSRodney W. Grimes.Fn vsprintf
10758f0484fSRodney W. Grimesfunctions respectively.
10858f0484fSRodney W. GrimesEach successive
10958f0484fSRodney W. Grimes.Em pointer
11058f0484fSRodney W. Grimesargument must correspond properly with
11158f0484fSRodney W. Grimeseach successive conversion specifier
11238261ac8SDima Dorfman(but see the
11338261ac8SDima Dorfman.Cm *
11438261ac8SDima Dorfmanconversion below).
11558f0484fSRodney W. GrimesAll conversions are introduced by the
11658f0484fSRodney W. Grimes.Cm %
11758f0484fSRodney W. Grimes(percent sign) character.
11858f0484fSRodney W. GrimesThe
11958f0484fSRodney W. Grimes.Fa format
12058f0484fSRodney W. Grimesstring
12158f0484fSRodney W. Grimesmay also contain other characters.
12258f0484fSRodney W. GrimesWhite space (such as blanks, tabs, or newlines) in the
12358f0484fSRodney W. Grimes.Fa format
12458f0484fSRodney W. Grimesstring match any amount of white space, including none, in the input.
12558f0484fSRodney W. GrimesEverything else
12658f0484fSRodney W. Grimesmatches only itself.
12758f0484fSRodney W. GrimesScanning stops
12858f0484fSRodney W. Grimeswhen an input character does not match such a format character.
12958f0484fSRodney W. GrimesScanning also stops
13058f0484fSRodney W. Grimeswhen an input conversion cannot be made (see below).
13158f0484fSRodney W. Grimes.Sh CONVERSIONS
13258f0484fSRodney W. GrimesFollowing the
13358f0484fSRodney W. Grimes.Cm %
13458f0484fSRodney W. Grimescharacter introducing a conversion
13558f0484fSRodney W. Grimesthere may be a number of
13658f0484fSRodney W. Grimes.Em flag
13758f0484fSRodney W. Grimescharacters, as follows:
138946b2d00SBill Fenner.Bl -tag -width ".Cm l No (ell)"
13958f0484fSRodney W. Grimes.It Cm *
14058f0484fSRodney W. GrimesSuppresses assignment.
14158f0484fSRodney W. GrimesThe conversion that follows occurs as usual, but no pointer is used;
14258f0484fSRodney W. Grimesthe result of the conversion is simply discarded.
143946b2d00SBill Fenner.It Cm hh
144946b2d00SBill FennerIndicates that the conversion will be one of
145946b2d00SBill Fenner.Cm dioux
146946b2d00SBill Fenneror
147946b2d00SBill Fenner.Cm n
148946b2d00SBill Fennerand the next pointer is a pointer to a
149432e57ebSRuslan Ermilov.Vt char
150946b2d00SBill Fenner(rather than
151432e57ebSRuslan Ermilov.Vt int ) .
15258f0484fSRodney W. Grimes.It Cm h
15358f0484fSRodney W. GrimesIndicates that the conversion will be one of
15458f0484fSRodney W. Grimes.Cm dioux
15558f0484fSRodney W. Grimesor
15658f0484fSRodney W. Grimes.Cm n
15758f0484fSRodney W. Grimesand the next pointer is a pointer to a
158432e57ebSRuslan Ermilov.Vt "short int"
15958f0484fSRodney W. Grimes(rather than
160432e57ebSRuslan Ermilov.Vt int ) .
161946b2d00SBill Fenner.It Cm l No (ell)
162946b2d00SBill FennerIndicates that the conversion will be one of
16358f0484fSRodney W. Grimes.Cm dioux
16458f0484fSRodney W. Grimesor
16558f0484fSRodney W. Grimes.Cm n
16658f0484fSRodney W. Grimesand the next pointer is a pointer to a
167432e57ebSRuslan Ermilov.Vt "long int"
16858f0484fSRodney W. Grimes(rather than
169432e57ebSRuslan Ermilov.Vt int ) ,
170946b2d00SBill Fennerthat the conversion will be one of
171b6b7fb37SDavid Schultz.Cm a , e , f ,
172b6b7fb37SDavid Schultzor
173b6b7fb37SDavid Schultz.Cm g
17458f0484fSRodney W. Grimesand the next pointer is a pointer to
175432e57ebSRuslan Ermilov.Vt double
17658f0484fSRodney W. Grimes(rather than
177432e57ebSRuslan Ermilov.Vt float ) ,
178946b2d00SBill Fenneror that the conversion will be one of
1794712aa3bSTim J. Robbins.Cm c ,
180946b2d00SBill Fenner.Cm s
1814712aa3bSTim J. Robbinsor
1824712aa3bSTim J. Robbins.Cm \&[
183946b2d00SBill Fennerand the next pointer is a pointer to an array of
184432e57ebSRuslan Ermilov.Vt wchar_t
185946b2d00SBill Fenner(rather than
186432e57ebSRuslan Ermilov.Vt char ) .
187946b2d00SBill Fenner.It Cm ll No (ell ell)
188946b2d00SBill FennerIndicates that the conversion will be one of
1895e17038fSJordan K. Hubbard.Cm dioux
1905e17038fSJordan K. Hubbardor
1915e17038fSJordan K. Hubbard.Cm n
1925e17038fSJordan K. Hubbardand the next pointer is a pointer to a
193432e57ebSRuslan Ermilov.Vt "long long int"
1945e17038fSJordan K. Hubbard(rather than
195432e57ebSRuslan Ermilov.Vt int ) .
196946b2d00SBill Fenner.It Cm L
197946b2d00SBill FennerIndicates that the conversion will be one of
198b6b7fb37SDavid Schultz.Cm a , e , f ,
199946b2d00SBill Fenneror
200946b2d00SBill Fenner.Cm g
201946b2d00SBill Fennerand the next pointer is a pointer to
202432e57ebSRuslan Ermilov.Vt "long double" .
203946b2d00SBill Fenner.It Cm j
204946b2d00SBill FennerIndicates that the conversion will be one of
205946b2d00SBill Fenner.Cm dioux
206946b2d00SBill Fenneror
207946b2d00SBill Fenner.Cm n
208946b2d00SBill Fennerand the next pointer is a pointer to a
209432e57ebSRuslan Ermilov.Vt intmax_t
210946b2d00SBill Fenner(rather than
211432e57ebSRuslan Ermilov.Vt int ) .
212946b2d00SBill Fenner.It Cm t
213946b2d00SBill FennerIndicates that the conversion will be one of
214946b2d00SBill Fenner.Cm dioux
215946b2d00SBill Fenneror
216946b2d00SBill Fenner.Cm n
217946b2d00SBill Fennerand the next pointer is a pointer to a
218432e57ebSRuslan Ermilov.Vt ptrdiff_t
219946b2d00SBill Fenner(rather than
220432e57ebSRuslan Ermilov.Vt int ) .
221946b2d00SBill Fenner.It Cm z
222946b2d00SBill FennerIndicates that the conversion will be one of
223946b2d00SBill Fenner.Cm dioux
224946b2d00SBill Fenneror
225946b2d00SBill Fenner.Cm n
226946b2d00SBill Fennerand the next pointer is a pointer to a
227432e57ebSRuslan Ermilov.Vt size_t
228946b2d00SBill Fenner(rather than
229432e57ebSRuslan Ermilov.Vt int ) .
230946b2d00SBill Fenner.It Cm q
231946b2d00SBill Fenner(deprecated.)
232946b2d00SBill FennerIndicates that the conversion will be one of
233946b2d00SBill Fenner.Cm dioux
234946b2d00SBill Fenneror
235946b2d00SBill Fenner.Cm n
236946b2d00SBill Fennerand the next pointer is a pointer to a
237432e57ebSRuslan Ermilov.Vt "long long int"
238946b2d00SBill Fenner(rather than
239432e57ebSRuslan Ermilov.Vt int ) .
24058f0484fSRodney W. Grimes.El
24158f0484fSRodney W. Grimes.Pp
24258f0484fSRodney W. GrimesIn addition to these flags,
24358f0484fSRodney W. Grimesthere may be an optional maximum field width,
24458f0484fSRodney W. Grimesexpressed as a decimal integer,
24558f0484fSRodney W. Grimesbetween the
24658f0484fSRodney W. Grimes.Cm %
24758f0484fSRodney W. Grimesand the conversion.
24858f0484fSRodney W. GrimesIf no width is given,
249432e57ebSRuslan Ermilova default of
250432e57ebSRuslan Ermilov.Dq infinity
251432e57ebSRuslan Ermilovis used (with one exception, below);
2524712aa3bSTim J. Robbinsotherwise at most this many bytes are scanned
25358f0484fSRodney W. Grimesin processing the conversion.
2544712aa3bSTim J. RobbinsIn the case of the
2554712aa3bSTim J. Robbins.Cm lc ,
2564712aa3bSTim J. Robbins.Cm ls
2574712aa3bSTim J. Robbinsand
2584712aa3bSTim J. Robbins.Cm l[
2594712aa3bSTim J. Robbinsconversions, the field width specifies the maximum number
2604712aa3bSTim J. Robbinsof multibyte characters that will be scanned.
26158f0484fSRodney W. GrimesBefore conversion begins,
26258f0484fSRodney W. Grimesmost conversions skip white space;
26358f0484fSRodney W. Grimesthis white space is not counted against the field width.
26458f0484fSRodney W. Grimes.Pp
26558f0484fSRodney W. GrimesThe following conversions are available:
26658f0484fSRodney W. Grimes.Bl -tag -width XXXX
26758f0484fSRodney W. Grimes.It Cm %
268432e57ebSRuslan ErmilovMatches a literal
269432e57ebSRuslan Ermilov.Ql % .
270432e57ebSRuslan ErmilovThat is,
271432e57ebSRuslan Ermilov.Dq Li %%
272432e57ebSRuslan Ermilovin the format string
273432e57ebSRuslan Ermilovmatches a single input
274432e57ebSRuslan Ermilov.Ql %
275432e57ebSRuslan Ermilovcharacter.
27658f0484fSRodney W. GrimesNo conversion is done, and assignment does not occur.
27758f0484fSRodney W. Grimes.It Cm d
27858f0484fSRodney W. GrimesMatches an optionally signed decimal integer;
27958f0484fSRodney W. Grimesthe next pointer must be a pointer to
280432e57ebSRuslan Ermilov.Vt int .
28158f0484fSRodney W. Grimes.It Cm i
28258f0484fSRodney W. GrimesMatches an optionally signed integer;
28358f0484fSRodney W. Grimesthe next pointer must be a pointer to
284432e57ebSRuslan Ermilov.Vt int .
28558f0484fSRodney W. GrimesThe integer is read in base 16 if it begins
28658f0484fSRodney W. Grimeswith
28758f0484fSRodney W. Grimes.Ql 0x
28858f0484fSRodney W. Grimesor
28958f0484fSRodney W. Grimes.Ql 0X ,
29058f0484fSRodney W. Grimesin base 8 if it begins with
29158f0484fSRodney W. Grimes.Ql 0 ,
29258f0484fSRodney W. Grimesand in base 10 otherwise.
29358f0484fSRodney W. GrimesOnly characters that correspond to the base are used.
29458f0484fSRodney W. Grimes.It Cm o
29558f0484fSRodney W. GrimesMatches an octal integer;
29658f0484fSRodney W. Grimesthe next pointer must be a pointer to
297432e57ebSRuslan Ermilov.Vt "unsigned int" .
29858f0484fSRodney W. Grimes.It Cm u
29958f0484fSRodney W. GrimesMatches an optionally signed decimal integer;
30058f0484fSRodney W. Grimesthe next pointer must be a pointer to
301432e57ebSRuslan Ermilov.Vt "unsigned int" .
302946b2d00SBill Fenner.It Cm x , X
30358f0484fSRodney W. GrimesMatches an optionally signed hexadecimal integer;
30458f0484fSRodney W. Grimesthe next pointer must be a pointer to
305432e57ebSRuslan Ermilov.Vt "unsigned int" .
306b6b7fb37SDavid Schultz.It Cm a , A , e , E , f , F , g , G
307b6b7fb37SDavid SchultzMatches a floating-point number in the style of
308b6b7fb37SDavid Schultz.Xr strtod 3 .
309b6b7fb37SDavid SchultzThe next pointer must be a pointer to
310b6b7fb37SDavid Schultz.Vt float
311b6b7fb37SDavid Schultz(unless
312b6b7fb37SDavid Schultz.Cm l
313b6b7fb37SDavid Schultzor
314b6b7fb37SDavid Schultz.Cm L
315b6b7fb37SDavid Schultzis specified.)
31658f0484fSRodney W. Grimes.It Cm s
31758f0484fSRodney W. GrimesMatches a sequence of non-white-space characters;
31858f0484fSRodney W. Grimesthe next pointer must be a pointer to
319432e57ebSRuslan Ermilov.Vt char ,
32058f0484fSRodney W. Grimesand the array must be large enough to accept all the sequence and the
32158f0484fSRodney W. Grimesterminating
32258f0484fSRodney W. Grimes.Dv NUL
32358f0484fSRodney W. Grimescharacter.
32458f0484fSRodney W. GrimesThe input string stops at white space
32558f0484fSRodney W. Grimesor at the maximum field width, whichever occurs first.
3264712aa3bSTim J. Robbins.Pp
3274712aa3bSTim J. RobbinsIf an
3284712aa3bSTim J. Robbins.Cm l
3294712aa3bSTim J. Robbinsqualifier is present, the next pointer must be a pointer to
3304712aa3bSTim J. Robbins.Vt wchar_t ,
3314712aa3bSTim J. Robbinsinto which the input will be placed after conversion by
3324712aa3bSTim J. Robbins.Xr mbrtowc 3 .
333946b2d00SBill Fenner.It Cm S
334946b2d00SBill FennerThe same as
335946b2d00SBill Fenner.Cm ls .
33658f0484fSRodney W. Grimes.It Cm c
33758f0484fSRodney W. GrimesMatches a sequence of
33858f0484fSRodney W. Grimes.Em width
33958f0484fSRodney W. Grimescount
34058f0484fSRodney W. Grimescharacters (default 1);
34158f0484fSRodney W. Grimesthe next pointer must be a pointer to
342432e57ebSRuslan Ermilov.Vt char ,
34358f0484fSRodney W. Grimesand there must be enough room for all the characters
34458f0484fSRodney W. Grimes(no terminating
34558f0484fSRodney W. Grimes.Dv NUL
34658f0484fSRodney W. Grimesis added).
34758f0484fSRodney W. GrimesThe usual skip of leading white space is suppressed.
34858f0484fSRodney W. GrimesTo skip white space first, use an explicit space in the format.
3494712aa3bSTim J. Robbins.Pp
3504712aa3bSTim J. RobbinsIf an
3514712aa3bSTim J. Robbins.Cm l
3524712aa3bSTim J. Robbinsqualifier is present, the next pointer must be a pointer to
3534712aa3bSTim J. Robbins.Vt wchar_t ,
3544712aa3bSTim J. Robbinsinto which the input will be placed after conversion by
3554712aa3bSTim J. Robbins.Xr mbrtowc 3 .
356946b2d00SBill Fenner.It Cm C
357946b2d00SBill FennerThe same as
358946b2d00SBill Fenner.Cm lc .
35958f0484fSRodney W. Grimes.It Cm \&[
36058f0484fSRodney W. GrimesMatches a nonempty sequence of characters from the specified set
36158f0484fSRodney W. Grimesof accepted characters;
36258f0484fSRodney W. Grimesthe next pointer must be a pointer to
363432e57ebSRuslan Ermilov.Vt char ,
36458f0484fSRodney W. Grimesand there must be enough room for all the characters in the string,
36558f0484fSRodney W. Grimesplus a terminating
36658f0484fSRodney W. Grimes.Dv NUL
36758f0484fSRodney W. Grimescharacter.
36858f0484fSRodney W. GrimesThe usual skip of leading white space is suppressed.
36958f0484fSRodney W. GrimesThe string is to be made up of characters in
37058f0484fSRodney W. Grimes(or not in)
37158f0484fSRodney W. Grimesa particular set;
37258f0484fSRodney W. Grimesthe set is defined by the characters between the open bracket
373790752beSJoel Dahl.Cm \&[
37458f0484fSRodney W. Grimescharacter
37558f0484fSRodney W. Grimesand a close bracket
376790752beSJoel Dahl.Cm \&]
37758f0484fSRodney W. Grimescharacter.
37858f0484fSRodney W. GrimesThe set
37958f0484fSRodney W. Grimes.Em excludes
38058f0484fSRodney W. Grimesthose characters
38158f0484fSRodney W. Grimesif the first character after the open bracket is a circumflex
38258f0484fSRodney W. Grimes.Cm ^ .
38358f0484fSRodney W. GrimesTo include a close bracket in the set,
38458f0484fSRodney W. Grimesmake it the first character after the open bracket
38558f0484fSRodney W. Grimesor the circumflex;
38658f0484fSRodney W. Grimesany other position will end the set.
38758f0484fSRodney W. GrimesThe hyphen character
38858f0484fSRodney W. Grimes.Cm -
38958f0484fSRodney W. Grimesis also special;
39058f0484fSRodney W. Grimeswhen placed between two other characters,
39158f0484fSRodney W. Grimesit adds all intervening characters to the set.
39258f0484fSRodney W. GrimesTo include a hyphen,
39358f0484fSRodney W. Grimesmake it the last character before the final close bracket.
39458f0484fSRodney W. GrimesFor instance,
39558f0484fSRodney W. Grimes.Ql [^]0-9-]
396432e57ebSRuslan Ermilovmeans the set
397432e57ebSRuslan Ermilov.Dq "everything except close bracket, zero through nine, and hyphen" .
39858f0484fSRodney W. GrimesThe string ends with the appearance of a character not in the
39958f0484fSRodney W. Grimes(or, with a circumflex, in) set
40058f0484fSRodney W. Grimesor when the field width runs out.
4014712aa3bSTim J. Robbins.Pp
4024712aa3bSTim J. RobbinsIf an
4034712aa3bSTim J. Robbins.Cm l
4044712aa3bSTim J. Robbinsqualifier is present, the next pointer must be a pointer to
4054712aa3bSTim J. Robbins.Vt wchar_t ,
4064712aa3bSTim J. Robbinsinto which the input will be placed after conversion by
4074712aa3bSTim J. Robbins.Xr mbrtowc 3 .
40858f0484fSRodney W. Grimes.It Cm p
40958f0484fSRodney W. GrimesMatches a pointer value (as printed by
41058f0484fSRodney W. Grimes.Ql %p
41158f0484fSRodney W. Grimesin
41258f0484fSRodney W. Grimes.Xr printf 3 ) ;
41358f0484fSRodney W. Grimesthe next pointer must be a pointer to
414432e57ebSRuslan Ermilov.Vt void .
41558f0484fSRodney W. Grimes.It Cm n
41658f0484fSRodney W. GrimesNothing is expected;
41758f0484fSRodney W. Grimesinstead, the number of characters consumed thus far from the input
41858f0484fSRodney W. Grimesis stored through the next pointer,
41958f0484fSRodney W. Grimeswhich must be a pointer to
420432e57ebSRuslan Ermilov.Vt int .
42158f0484fSRodney W. GrimesThis is
42258f0484fSRodney W. Grimes.Em not
42358f0484fSRodney W. Grimesa conversion, although it can be suppressed with the
42458f0484fSRodney W. Grimes.Cm *
42558f0484fSRodney W. Grimesflag.
42658f0484fSRodney W. Grimes.El
42758f0484fSRodney W. Grimes.Pp
42836db5680SAndrey A. ChernovThe decimal point
429429d919cSRuslan Ermilovcharacter is defined in the program's locale (category
430429d919cSRuslan Ermilov.Dv LC_NUMERIC ) .
43136db5680SAndrey A. Chernov.Pp
432432e57ebSRuslan ErmilovFor backwards compatibility, a
433432e57ebSRuslan Ermilov.Dq conversion
434432e57ebSRuslan Ermilovof
43558f0484fSRodney W. Grimes.Ql %\e0
43658f0484fSRodney W. Grimescauses an immediate return of
43758f0484fSRodney W. Grimes.Dv EOF .
43858f0484fSRodney W. Grimes.Sh RETURN VALUES
43958f0484fSRodney W. GrimesThese
44058f0484fSRodney W. Grimesfunctions
44158f0484fSRodney W. Grimesreturn
44258f0484fSRodney W. Grimesthe number of input items assigned, which can be fewer than provided
44358f0484fSRodney W. Grimesfor, or even zero, in the event of a matching failure.
44458f0484fSRodney W. GrimesZero
44558f0484fSRodney W. Grimesindicates that, while there was input available,
44658f0484fSRodney W. Grimesno conversions were assigned;
44758f0484fSRodney W. Grimestypically this is due to an invalid input character,
44858f0484fSRodney W. Grimessuch as an alphabetic character for a
44958f0484fSRodney W. Grimes.Ql %d
45058f0484fSRodney W. Grimesconversion.
45158f0484fSRodney W. GrimesThe value
45258f0484fSRodney W. Grimes.Dv EOF
45358f0484fSRodney W. Grimesis returned if an input failure occurs before any conversion such as an
454c6ff3a1bSSheldon Hearnend-of-file occurs.
455c6ff3a1bSSheldon HearnIf an error or end-of-file occurs after conversion
45658f0484fSRodney W. Grimeshas begun,
45758f0484fSRodney W. Grimesthe number of conversions which were successfully completed is returned.
45858f0484fSRodney W. Grimes.Sh SEE ALSO
45958f0484fSRodney W. Grimes.Xr getc 3 ,
46038b5abadSTim J. Robbins.Xr mbrtowc 3 ,
46175141cc9SWolfram Schneider.Xr printf 3 ,
46275141cc9SWolfram Schneider.Xr strtod 3 ,
46375141cc9SWolfram Schneider.Xr strtol 3 ,
46438b5abadSTim J. Robbins.Xr strtoul 3 ,
46538b5abadSTim J. Robbins.Xr wscanf 3
46658f0484fSRodney W. Grimes.Sh STANDARDS
46758f0484fSRodney W. GrimesThe functions
46858f0484fSRodney W. Grimes.Fn fscanf ,
46958f0484fSRodney W. Grimes.Fn scanf ,
4705a7405beSTim J. Robbins.Fn sscanf ,
4715a7405beSTim J. Robbins.Fn vfscanf ,
4725a7405beSTim J. Robbins.Fn vscanf
47358f0484fSRodney W. Grimesand
4745a7405beSTim J. Robbins.Fn vsscanf
47558f0484fSRodney W. Grimesconform to
476946b2d00SBill Fenner.St -isoC-99 .
47758f0484fSRodney W. Grimes.Sh BUGS
478946b2d00SBill FennerEarlier implementations of
479946b2d00SBill Fenner.Nm
480946b2d00SBill Fennertreated
481946b2d00SBill Fenner.Cm \&%D , \&%E , \&%F , \&%O
48258f0484fSRodney W. Grimesand
483946b2d00SBill Fenner.Cm \&%X
484946b2d00SBill Fenneras their lowercase equivalents with an
485946b2d00SBill Fenner.Cm l
486432e57ebSRuslan Ermilovmodifier.
487432e57ebSRuslan ErmilovIn addition,
488946b2d00SBill Fenner.Nm
489946b2d00SBill Fennertreated an unknown conversion character as
490946b2d00SBill Fenner.Cm \&%d
491946b2d00SBill Fenneror
492946b2d00SBill Fenner.Cm \&%D ,
493432e57ebSRuslan Ermilovdepending on its case.
494432e57ebSRuslan ErmilovThis functionality has been removed.
49558f0484fSRodney W. Grimes.Pp
49658f0484fSRodney W. GrimesNumerical strings are truncated to 512 characters; for example,
49758f0484fSRodney W. Grimes.Cm %f
49858f0484fSRodney W. Grimesand
49958f0484fSRodney W. Grimes.Cm %d
50058f0484fSRodney W. Grimesare implicitly
50158f0484fSRodney W. Grimes.Cm %512f
50258f0484fSRodney W. Grimesand
50358f0484fSRodney W. Grimes.Cm %512d .
504946b2d00SBill Fenner.Pp
505946b2d00SBill FennerThe
506946b2d00SBill Fenner.Cm %n$
507946b2d00SBill Fennermodifiers for positional arguments are not implemented.
508946b2d00SBill Fenner.Pp
509946b2d00SBill FennerThe
510e2b090f3STim J. Robbins.Nm
511e2b090f3STim J. Robbinsfamily of functions do not correctly handle multibyte characters in the
512e2b090f3STim J. Robbins.Fa format
513e2b090f3STim J. Robbinsargument.
514