xref: /freebsd/lib/libc/stdio/scanf.3 (revision 0c785f06020f3b02e34c97eb27fecd3af8eb2a7b)
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. Neither the name of the University nor the names of its contributors
17.\"    may be used to endorse or promote products derived from this software
18.\"    without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\"     @(#)scanf.3	8.2 (Berkeley) 12/11/93
33.\"
34.Dd April 2, 2022
35.Dt SCANF 3
36.Os
37.Sh NAME
38.Nm scanf ,
39.Nm fscanf ,
40.Nm sscanf ,
41.Nm vscanf ,
42.Nm vsscanf ,
43.Nm vfscanf
44.Nd input format conversion
45.Sh LIBRARY
46.Lb libc
47.Sh SYNOPSIS
48.In stdio.h
49.Ft int
50.Fn scanf "const char * restrict format" ...
51.Ft int
52.Fn fscanf "FILE * restrict stream" "const char * restrict format" ...
53.Ft int
54.Fn sscanf "const char * restrict str" "const char * restrict format" ...
55.In stdarg.h
56.Ft int
57.Fn vscanf "const char * restrict format" "va_list ap"
58.Ft int
59.Fn vsscanf "const char * restrict str" "const char * restrict format" "va_list ap"
60.Ft int
61.Fn vfscanf "FILE * restrict stream" "const char * restrict format" "va_list ap"
62.Sh DESCRIPTION
63The
64.Fn scanf
65family of functions scans input according to a
66.Fa format
67as described below.
68This format may contain
69.Em conversion specifiers ;
70the results from such conversions, if any,
71are stored through the
72.Em pointer
73arguments.
74The
75.Fn scanf
76function
77reads input from the standard input stream
78.Dv stdin ,
79.Fn fscanf
80reads input from the stream pointer
81.Fa stream ,
82and
83.Fn sscanf
84reads its input from the character string pointed to by
85.Fa str .
86The
87.Fn vfscanf
88function
89is analogous to
90.Xr vfprintf 3
91and reads input from the stream pointer
92.Fa stream
93using a variable argument list of pointers (see
94.Xr stdarg 3 ) .
95The
96.Fn vscanf
97function scans a variable argument list from the standard input and
98the
99.Fn vsscanf
100function scans it from a string;
101these are analogous to
102the
103.Fn vprintf
104and
105.Fn vsprintf
106functions respectively.
107Each successive
108.Em pointer
109argument must correspond properly with
110each successive conversion specifier
111(but see the
112.Cm *
113conversion below).
114All conversions are introduced by the
115.Cm %
116(percent sign) character.
117The
118.Fa format
119string
120may also contain other characters.
121White space (such as blanks, tabs, or newlines) in the
122.Fa format
123string match any amount of white space, including none, in the input.
124Everything else
125matches only itself.
126Scanning stops
127when an input character does not match such a format character.
128Scanning also stops
129when an input conversion cannot be made (see below).
130.Sh CONVERSIONS
131Following the
132.Cm %
133character introducing a conversion
134there may be a number of
135.Em flag
136characters, as follows:
137.Bl -tag -width ".Cm l No (ell)"
138.It Cm *
139Suppresses assignment.
140The conversion that follows occurs as usual, but no pointer is used;
141the result of the conversion is simply discarded.
142.It Cm hh
143Indicates that the conversion will be one of
144.Cm dioux
145or
146.Cm n
147and the next pointer is a pointer to a
148.Vt char
149(rather than
150.Vt int ) .
151.It Cm h
152Indicates that the conversion will be one of
153.Cm dioux
154or
155.Cm n
156and the next pointer is a pointer to a
157.Vt "short int"
158(rather than
159.Vt int ) .
160.It Cm l No (ell)
161Indicates that the conversion will be one of
162.Cm dioux
163or
164.Cm n
165and the next pointer is a pointer to a
166.Vt "long int"
167(rather than
168.Vt int ) ,
169that the conversion will be one of
170.Cm a , e , f ,
171or
172.Cm g
173and the next pointer is a pointer to
174.Vt double
175(rather than
176.Vt float ) ,
177or that the conversion will be one of
178.Cm c ,
179.Cm s
180or
181.Cm \&[
182and the next pointer is a pointer to an array of
183.Vt wchar_t
184(rather than
185.Vt char ) .
186.It Cm ll No (ell ell)
187Indicates that the conversion will be one of
188.Cm dioux
189or
190.Cm n
191and the next pointer is a pointer to a
192.Vt "long long int"
193(rather than
194.Vt int ) .
195.It Cm L
196Indicates that the conversion will be one of
197.Cm a , e , f ,
198or
199.Cm g
200and the next pointer is a pointer to
201.Vt "long double" .
202.It Cm j
203Indicates that the conversion will be one of
204.Cm dioux
205or
206.Cm n
207and the next pointer is a pointer to a
208.Vt intmax_t
209(rather than
210.Vt int ) .
211.It Cm t
212Indicates that the conversion will be one of
213.Cm dioux
214or
215.Cm n
216and the next pointer is a pointer to a
217.Vt ptrdiff_t
218(rather than
219.Vt int ) .
220.It Cm z
221Indicates that the conversion will be one of
222.Cm dioux
223or
224.Cm n
225and the next pointer is a pointer to a
226.Vt size_t
227(rather than
228.Vt int ) .
229.It Cm q
230(deprecated.)
231Indicates that the conversion will be one of
232.Cm dioux
233or
234.Cm n
235and the next pointer is a pointer to a
236.Vt "long long int"
237(rather than
238.Vt int ) .
239.El
240.Pp
241In addition to these flags,
242there may be an optional maximum field width,
243expressed as a decimal integer,
244between the
245.Cm %
246and the conversion.
247If no width is given,
248a default of
249.Dq infinity
250is used (with one exception, below);
251otherwise at most this many bytes are scanned
252in processing the conversion.
253In the case of the
254.Cm lc ,
255.Cm ls
256and
257.Cm l[
258conversions, the field width specifies the maximum number
259of multibyte characters that will be scanned.
260Before conversion begins,
261most conversions skip white space;
262this white space is not counted against the field width.
263.Pp
264The following conversions are available:
265.Bl -tag -width XXXX
266.It Cm %
267Matches a literal
268.Ql % .
269That is,
270.Dq Li %%
271in the format string
272matches a single input
273.Ql %
274character.
275No conversion is done, and assignment does not occur.
276.It Cm d
277Matches an optionally signed decimal integer;
278the next pointer must be a pointer to
279.Vt int .
280.It Cm i
281Matches an optionally signed integer;
282the next pointer must be a pointer to
283.Vt int .
284The integer is read in base 16 if it begins
285with
286.Ql 0x
287or
288.Ql 0X ,
289in base 8 if it begins with
290.Ql 0 ,
291and in base 10 otherwise.
292Only characters that correspond to the base are used.
293.It Cm o
294Matches an octal integer;
295the next pointer must be a pointer to
296.Vt "unsigned int" .
297.It Cm u
298Matches an optionally signed decimal integer;
299the next pointer must be a pointer to
300.Vt "unsigned int" .
301.It Cm x , X
302Matches an optionally signed hexadecimal integer;
303the next pointer must be a pointer to
304.Vt "unsigned int" .
305.It Cm a , A , e , E , f , F , g , G
306Matches a floating-point number in the style of
307.Xr strtod 3 .
308The next pointer must be a pointer to
309.Vt float
310(unless
311.Cm l
312or
313.Cm L
314is specified.)
315.It Cm s
316Matches a sequence of non-white-space characters;
317the next pointer must be a pointer to
318.Vt char ,
319and the array must be large enough to accept all the sequence and the
320terminating
321.Dv NUL
322character.
323The input string stops at white space
324or at the maximum field width, whichever occurs first.
325.Pp
326If an
327.Cm l
328qualifier is present, the next pointer must be a pointer to
329.Vt wchar_t ,
330into which the input will be placed after conversion by
331.Xr mbrtowc 3 .
332.It Cm S
333The same as
334.Cm ls .
335.It Cm c
336Matches a sequence of
337.Em width
338count
339characters (default 1);
340the next pointer must be a pointer to
341.Vt char ,
342and there must be enough room for all the characters
343(no terminating
344.Dv NUL
345is added).
346The usual skip of leading white space is suppressed.
347To skip white space first, use an explicit space in the format.
348.Pp
349If an
350.Cm l
351qualifier is present, the next pointer must be a pointer to
352.Vt wchar_t ,
353into which the input will be placed after conversion by
354.Xr mbrtowc 3 .
355.It Cm C
356The same as
357.Cm lc .
358.It Cm \&[
359Matches a nonempty sequence of characters from the specified set
360of accepted characters;
361the next pointer must be a pointer to
362.Vt char ,
363and there must be enough room for all the characters in the string,
364plus a terminating
365.Dv NUL
366character.
367The usual skip of leading white space is suppressed.
368The string is to be made up of characters in
369(or not in)
370a particular set;
371the set is defined by the characters between the open bracket
372.Cm \&[
373character
374and a close bracket
375.Cm \&]
376character.
377The set
378.Em excludes
379those characters
380if the first character after the open bracket is a circumflex
381.Cm ^ .
382To include a close bracket in the set,
383make it the first character after the open bracket
384or the circumflex;
385any other position will end the set.
386The hyphen character
387.Cm -
388is also special;
389when placed between two other characters,
390it adds all intervening characters to the set.
391To include a hyphen,
392make it the last character before the final close bracket.
393For instance,
394.Ql [^]0-9-]
395means the set
396.Dq "everything except close bracket, zero through nine, and hyphen" .
397The string ends with the appearance of a character not in the
398(or, with a circumflex, in) set
399or when the field width runs out.
400.Pp
401If an
402.Cm l
403qualifier is present, the next pointer must be a pointer to
404.Vt wchar_t ,
405into which the input will be placed after conversion by
406.Xr mbrtowc 3 .
407.It Cm p
408Matches a pointer value (as printed by
409.Ql %p
410in
411.Xr printf 3 ) ;
412the next pointer must be a pointer to
413.Vt void .
414.It Cm n
415Nothing is expected;
416instead, the number of characters consumed thus far from the input
417is stored through the next pointer,
418which must be a pointer to
419.Vt int .
420This is
421.Em not
422a conversion, although it can be suppressed with the
423.Cm *
424flag.
425.El
426.Pp
427The decimal point
428character is defined in the program's locale (category
429.Dv LC_NUMERIC ) .
430.Pp
431For backwards compatibility, a
432.Dq conversion
433of
434.Ql %\e0
435causes an immediate return of
436.Dv EOF .
437.Sh RETURN VALUES
438These
439functions
440return
441the number of input items assigned, which can be fewer than provided
442for, or even zero, in the event of a matching failure.
443Zero
444indicates that, while there was input available,
445no conversions were assigned;
446typically this is due to an invalid input character,
447such as an alphabetic character for a
448.Ql %d
449conversion.
450The value
451.Dv EOF
452is returned if an input failure occurs before any conversion such as an
453end-of-file occurs.
454If an error or end-of-file occurs after conversion
455has begun,
456the number of conversions which were successfully completed is returned.
457.Sh SEE ALSO
458.Xr getc 3 ,
459.Xr mbrtowc 3 ,
460.Xr printf 3 ,
461.Xr strtod 3 ,
462.Xr strtol 3 ,
463.Xr strtoul 3 ,
464.Xr wscanf 3
465.Sh STANDARDS
466The functions
467.Fn fscanf ,
468.Fn scanf ,
469.Fn sscanf ,
470.Fn vfscanf ,
471.Fn vscanf
472and
473.Fn vsscanf
474conform to
475.St -isoC-99 .
476.Sh HISTORY
477The functions
478.Fn scanf ,
479.Fn fscanf ,
480and
481.Fn sscanf
482first appeared in
483.At v7 ,
484and
485.Fn vscanf ,
486.Fn vsscanf ,
487and
488.Fn vfscanf
489in
490.Bx 4.3 Reno .
491.Sh BUGS
492Earlier implementations of
493.Nm
494treated
495.Cm \&%D , \&%E , \&%F , \&%O
496and
497.Cm \&%X
498as their lowercase equivalents with an
499.Cm l
500modifier.
501In addition,
502.Nm
503treated an unknown conversion character as
504.Cm \&%d
505or
506.Cm \&%D ,
507depending on its case.
508This functionality has been removed.
509.Pp
510Numerical strings are truncated to 512 characters; for example,
511.Cm %f
512and
513.Cm %d
514are implicitly
515.Cm %512f
516and
517.Cm %512d .
518.Pp
519The
520.Cm %n$
521modifiers for positional arguments are not implemented.
522.Pp
523The
524.Nm
525family of functions do not correctly handle multibyte characters in the
526.Fa format
527argument.
528