1 .\" Copyright (c) 1990, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
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.
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
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.
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
36 .\" @(#)scanf.3 8.2 (Berkeley) 12/11/93
37 .\" $FreeBSD: src/lib/libc/stdio/scanf.3,v 1.13 2001/10/01 16:08:59 ru Exp $
49 .Nd input format conversion
55 .Fn scanf "const char *format" ...
57 .Fn fscanf "FILE *stream" "const char *format" ...
59 .Fn sscanf "const char *str" "const char *format" ...
62 .Fn vscanf "const char *format" "va_list ap"
64 .Fn vsscanf "const char *str" "const char *format" "va_list ap"
66 .Fn vfscanf "FILE *stream" "const char *format" "va_list ap"
70 family of functions scans input according to a
73 This format may contain
74 .Em conversion specifiers ;
75 the results from such conversions, if any,
76 are stored through the
82 reads input from the standard input stream
85 reads input from the stream pointer
89 reads its input from the character string pointed to by
96 and reads input from the stream pointer
98 using a variable argument list of pointers (see
102 function scans a variable argument list from the standard input and
105 function scans it from a string;
106 these are analogous to
111 functions respectively.
114 argument must correspond properly with
115 each successive conversion specifier
116 (but see `suppression' below).
117 All conversions are introduced by the
119 (percent sign) character.
123 may also contain other characters.
124 White space (such as blanks, tabs, or newlines) in the
126 string match any amount of white space, including none, in the input.
130 when an input character does not match such a format character.
132 when an input conversion cannot be made (see below).
136 character introducing a conversion
137 there may be a number of
139 characters, as follows:
140 .Bl -tag -width indent
142 Suppresses assignment.
143 The conversion that follows occurs as usual, but no pointer is used;
144 the result of the conversion is simply discarded.
146 Indicates that the conversion will be one of
150 and the next pointer is a pointer to a
155 Indicates either that the conversion will be one of
159 and the next pointer is a pointer to a
163 or that the conversion will be one of
165 and the next pointer is a pointer to
170 Indicates that the conversion will be
172 and the next pointer is a pointer to
174 (This type is not implemented; the
176 flag is currently ignored.)
178 Indicates either that the conversion will be one of
182 and the next pointer is a pointer to a
188 In addition to these flags,
189 there may be an optional maximum field width,
190 expressed as a decimal integer,
194 If no width is given,
195 a default of `infinity' is used (with one exception, below);
196 otherwise at most this many characters are scanned
197 in processing the conversion.
198 Before conversion begins,
199 most conversions skip white space;
200 this white space is not counted against the field width.
202 The following conversions are available:
205 Matches a literal `%'.
206 That is, `%\&%' in the format string
207 matches a single input `%' character.
208 No conversion is done, and assignment does not occur.
210 Matches an optionally signed decimal integer;
211 the next pointer must be a pointer to
216 this exists only for backwards compatibility.
218 Matches an optionally signed integer;
219 the next pointer must be a pointer to
221 The integer is read in base 16 if it begins
226 in base 8 if it begins with
228 and in base 10 otherwise.
229 Only characters that correspond to the base are used.
231 Matches an octal integer;
232 the next pointer must be a pointer to
237 this exists for backwards compatibility.
239 Matches an optionally signed decimal integer;
240 the next pointer must be a pointer to
243 Matches an optionally signed hexadecimal integer;
244 the next pointer must be a pointer to
251 but is backwards compatible with previous
255 Matches an optionally signed floating-point number;
256 the next pointer must be a pointer to
269 but is backwards compatible with previous
275 this exists only for backwards compatibility.
277 Matches a sequence of non-white-space characters;
278 the next pointer must be a pointer to
280 and the array must be large enough to accept all the sequence and the
284 The input string stops at white space
285 or at the maximum field width, whichever occurs first.
287 Matches a sequence of
290 characters (default 1);
291 the next pointer must be a pointer to
293 and there must be enough room for all the characters
297 The usual skip of leading white space is suppressed.
298 To skip white space first, use an explicit space in the format.
300 Matches a nonempty sequence of characters from the specified set
301 of accepted characters;
302 the next pointer must be a pointer to
304 and there must be enough room for all the characters in the string,
308 The usual skip of leading white space is suppressed.
309 The string is to be made up of characters in
312 the set is defined by the characters between the open bracket
321 if the first character after the open bracket is a circumflex
323 To include a close bracket in the set,
324 make it the first character after the open bracket
326 any other position will end the set.
330 when placed between two other characters,
331 it adds all intervening characters to the set.
333 make it the last character before the final close bracket.
336 means the set `everything except close bracket, zero through nine,
338 The string ends with the appearance of a character not in the
339 (or, with a circumflex, in) set
340 or when the field width runs out.
342 Matches a pointer value (as printed by
346 the next pointer must be a pointer to
350 instead, the number of characters consumed thus far from the input
351 is stored through the next pointer,
352 which must be a pointer to
356 a conversion, although it can be suppressed with the
362 character is defined in the program's locale (category
365 For backwards compatibility,
366 other conversion characters (except
368 are taken as if they were
372 and a `conversion' of
374 causes an immediate return of
380 conversions will be changed in the future
384 after which they will act like
393 the number of input items assigned, which can be fewer than provided
394 for, or even zero, in the event of a matching failure.
396 indicates that, while there was input available,
397 no conversions were assigned;
398 typically this is due to an invalid input character,
399 such as an alphabetic character for a
404 is returned if an input failure occurs before any conversion such as an
406 If an error or end-of-file occurs after conversion
408 the number of conversions which were successfully completed is returned.
429 are new to this release.
431 The current situation with
435 conversions is unfortunate.
437 All of the backwards compatibility formats will be removed in the future.
439 Numerical strings are truncated to 512 characters; for example,