1994-05-27 05:00:24 +00:00
|
|
|
.\" Copyright (c) 1990, 1991, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" This code is derived from software contributed to Berkeley by
|
|
|
|
.\" Chris Torek and the American National Standards Committee X3,
|
|
|
|
.\" on Information Processing Systems.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\" 3. All advertising materials mentioning features or use of this software
|
|
|
|
.\" must display the following acknowledgement:
|
|
|
|
.\" This product includes software developed by the University of
|
|
|
|
.\" California, Berkeley and its contributors.
|
|
|
|
.\" 4. Neither the name of the University nor the names of its contributors
|
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" @(#)scanf.3 8.2 (Berkeley) 12/11/93
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1994-05-27 05:00:24 +00:00
|
|
|
.\"
|
2003-01-06 06:19:19 +00:00
|
|
|
.Dd January 4, 2003
|
1994-05-27 05:00:24 +00:00
|
|
|
.Dt SCANF 3
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm scanf ,
|
|
|
|
.Nm fscanf ,
|
|
|
|
.Nm sscanf ,
|
|
|
|
.Nm vscanf ,
|
|
|
|
.Nm vsscanf ,
|
|
|
|
.Nm vfscanf
|
|
|
|
.Nd input format conversion
|
2000-04-21 09:42:15 +00:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libc
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh SYNOPSIS
|
2001-10-01 16:09:29 +00:00
|
|
|
.In stdio.h
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ft int
|
2002-10-12 16:13:41 +00:00
|
|
|
.Fn scanf "const char * restrict format" ...
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ft int
|
2002-10-12 16:13:41 +00:00
|
|
|
.Fn fscanf "FILE * restrict stream" "const char * restrict format" ...
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ft int
|
2002-10-12 16:13:41 +00:00
|
|
|
.Fn sscanf "const char * restrict str" "const char * restrict format" ...
|
2001-10-01 16:09:29 +00:00
|
|
|
.In stdarg.h
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ft int
|
2002-10-12 16:13:41 +00:00
|
|
|
.Fn vscanf "const char * restrict format" "va_list ap"
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ft int
|
2002-10-12 16:13:41 +00:00
|
|
|
.Fn vsscanf "const char * restrict str" "const char * restrict format" "va_list ap"
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ft int
|
2002-10-12 16:13:41 +00:00
|
|
|
.Fn vfscanf "FILE * restrict stream" "const char * restrict format" "va_list ap"
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Fn scanf
|
|
|
|
family of functions scans input according to a
|
|
|
|
.Fa format
|
|
|
|
as described below.
|
|
|
|
This format may contain
|
|
|
|
.Em conversion specifiers ;
|
|
|
|
the results from such conversions, if any,
|
|
|
|
are stored through the
|
|
|
|
.Em pointer
|
|
|
|
arguments.
|
|
|
|
The
|
|
|
|
.Fn scanf
|
|
|
|
function
|
|
|
|
reads input from the standard input stream
|
2002-12-04 18:57:46 +00:00
|
|
|
.Dv stdin ,
|
1994-05-27 05:00:24 +00:00
|
|
|
.Fn fscanf
|
|
|
|
reads input from the stream pointer
|
|
|
|
.Fa stream ,
|
|
|
|
and
|
|
|
|
.Fn sscanf
|
|
|
|
reads its input from the character string pointed to by
|
|
|
|
.Fa str .
|
|
|
|
The
|
|
|
|
.Fn vfscanf
|
|
|
|
function
|
|
|
|
is analogous to
|
|
|
|
.Xr vfprintf 3
|
|
|
|
and reads input from the stream pointer
|
|
|
|
.Fa stream
|
|
|
|
using a variable argument list of pointers (see
|
|
|
|
.Xr stdarg 3 ) .
|
|
|
|
The
|
|
|
|
.Fn vscanf
|
|
|
|
function scans a variable argument list from the standard input and
|
|
|
|
the
|
|
|
|
.Fn vsscanf
|
|
|
|
function scans it from a string;
|
|
|
|
these are analogous to
|
|
|
|
the
|
|
|
|
.Fn vprintf
|
|
|
|
and
|
|
|
|
.Fn vsprintf
|
|
|
|
functions respectively.
|
|
|
|
Each successive
|
|
|
|
.Em pointer
|
|
|
|
argument must correspond properly with
|
|
|
|
each successive conversion specifier
|
2002-03-10 09:20:28 +00:00
|
|
|
(but see the
|
|
|
|
.Cm *
|
|
|
|
conversion below).
|
1994-05-27 05:00:24 +00:00
|
|
|
All conversions are introduced by the
|
|
|
|
.Cm %
|
|
|
|
(percent sign) character.
|
|
|
|
The
|
|
|
|
.Fa format
|
|
|
|
string
|
|
|
|
may also contain other characters.
|
|
|
|
White space (such as blanks, tabs, or newlines) in the
|
|
|
|
.Fa format
|
|
|
|
string match any amount of white space, including none, in the input.
|
|
|
|
Everything else
|
|
|
|
matches only itself.
|
|
|
|
Scanning stops
|
|
|
|
when an input character does not match such a format character.
|
|
|
|
Scanning also stops
|
|
|
|
when an input conversion cannot be made (see below).
|
|
|
|
.Sh CONVERSIONS
|
|
|
|
Following the
|
|
|
|
.Cm %
|
|
|
|
character introducing a conversion
|
|
|
|
there may be a number of
|
|
|
|
.Em flag
|
|
|
|
characters, as follows:
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.Bl -tag -width ".Cm l No (ell)"
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Cm *
|
|
|
|
Suppresses assignment.
|
|
|
|
The conversion that follows occurs as usual, but no pointer is used;
|
|
|
|
the result of the conversion is simply discarded.
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.It Cm hh
|
|
|
|
Indicates that the conversion will be one of
|
|
|
|
.Cm dioux
|
|
|
|
or
|
|
|
|
.Cm n
|
|
|
|
and the next pointer is a pointer to a
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt char
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
(rather than
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt int ) .
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Cm h
|
|
|
|
Indicates that the conversion will be one of
|
|
|
|
.Cm dioux
|
|
|
|
or
|
|
|
|
.Cm n
|
|
|
|
and the next pointer is a pointer to a
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt "short int"
|
1994-05-27 05:00:24 +00:00
|
|
|
(rather than
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt int ) .
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.It Cm l No (ell)
|
|
|
|
Indicates that the conversion will be one of
|
1994-05-27 05:00:24 +00:00
|
|
|
.Cm dioux
|
|
|
|
or
|
|
|
|
.Cm n
|
|
|
|
and the next pointer is a pointer to a
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt "long int"
|
1994-05-27 05:00:24 +00:00
|
|
|
(rather than
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt int ) ,
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
that the conversion will be one of
|
|
|
|
.Cm aefg
|
1994-05-27 05:00:24 +00:00
|
|
|
and the next pointer is a pointer to
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt double
|
1994-05-27 05:00:24 +00:00
|
|
|
(rather than
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt float ) ,
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
or that the conversion will be one of
|
2002-09-23 11:35:50 +00:00
|
|
|
.Cm c ,
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.Cm s
|
2002-09-23 11:35:50 +00:00
|
|
|
or
|
|
|
|
.Cm \&[
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
and the next pointer is a pointer to an array of
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt wchar_t
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
(rather than
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt char ) .
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.It Cm ll No (ell ell)
|
|
|
|
Indicates that the conversion will be one of
|
|
|
|
.Cm dioux
|
|
|
|
or
|
|
|
|
.Cm n
|
|
|
|
and the next pointer is a pointer to a
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt "long long int"
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
(rather than
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt int ) .
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Cm L
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
Indicates that the conversion will be one of
|
|
|
|
.Cm aef
|
|
|
|
or
|
|
|
|
.Cm g
|
1994-05-27 05:00:24 +00:00
|
|
|
and the next pointer is a pointer to
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt "long double" .
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
(This type is not implemented; although the argument is
|
|
|
|
required to be a pointer to
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt "long double" ,
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
no additional precision is used in the conversion.)
|
|
|
|
.It Cm j
|
|
|
|
Indicates that the conversion will be one of
|
|
|
|
.Cm dioux
|
|
|
|
or
|
|
|
|
.Cm n
|
|
|
|
and the next pointer is a pointer to a
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt intmax_t
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
(rather than
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt int ) .
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.It Cm t
|
|
|
|
Indicates that the conversion will be one of
|
|
|
|
.Cm dioux
|
|
|
|
or
|
|
|
|
.Cm n
|
|
|
|
and the next pointer is a pointer to a
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt ptrdiff_t
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
(rather than
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt int ) .
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.It Cm z
|
|
|
|
Indicates that the conversion will be one of
|
|
|
|
.Cm dioux
|
|
|
|
or
|
|
|
|
.Cm n
|
|
|
|
and the next pointer is a pointer to a
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt size_t
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
(rather than
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt int ) .
|
1997-07-01 17:46:39 +00:00
|
|
|
.It Cm q
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
(deprecated.)
|
|
|
|
Indicates that the conversion will be one of
|
1997-07-01 17:46:39 +00:00
|
|
|
.Cm dioux
|
|
|
|
or
|
|
|
|
.Cm n
|
|
|
|
and the next pointer is a pointer to a
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt "long long int"
|
1997-07-01 17:46:39 +00:00
|
|
|
(rather than
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt int ) .
|
1994-05-27 05:00:24 +00:00
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
In addition to these flags,
|
|
|
|
there may be an optional maximum field width,
|
|
|
|
expressed as a decimal integer,
|
|
|
|
between the
|
|
|
|
.Cm %
|
|
|
|
and the conversion.
|
|
|
|
If no width is given,
|
2002-05-30 09:53:47 +00:00
|
|
|
a default of
|
|
|
|
.Dq infinity
|
|
|
|
is used (with one exception, below);
|
2002-09-23 11:35:50 +00:00
|
|
|
otherwise at most this many bytes are scanned
|
1994-05-27 05:00:24 +00:00
|
|
|
in processing the conversion.
|
2002-09-23 11:35:50 +00:00
|
|
|
In the case of the
|
|
|
|
.Cm lc ,
|
|
|
|
.Cm ls
|
|
|
|
and
|
|
|
|
.Cm l[
|
|
|
|
conversions, the field width specifies the maximum number
|
|
|
|
of multibyte characters that will be scanned.
|
1994-05-27 05:00:24 +00:00
|
|
|
Before conversion begins,
|
|
|
|
most conversions skip white space;
|
|
|
|
this white space is not counted against the field width.
|
|
|
|
.Pp
|
|
|
|
The following conversions are available:
|
|
|
|
.Bl -tag -width XXXX
|
|
|
|
.It Cm %
|
2002-05-30 09:53:47 +00:00
|
|
|
Matches a literal
|
|
|
|
.Ql % .
|
|
|
|
That is,
|
|
|
|
.Dq Li %%
|
|
|
|
in the format string
|
|
|
|
matches a single input
|
|
|
|
.Ql %
|
|
|
|
character.
|
1994-05-27 05:00:24 +00:00
|
|
|
No conversion is done, and assignment does not occur.
|
|
|
|
.It Cm d
|
|
|
|
Matches an optionally signed decimal integer;
|
|
|
|
the next pointer must be a pointer to
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt int .
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Cm i
|
|
|
|
Matches an optionally signed integer;
|
|
|
|
the next pointer must be a pointer to
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt int .
|
1994-05-27 05:00:24 +00:00
|
|
|
The integer is read in base 16 if it begins
|
|
|
|
with
|
|
|
|
.Ql 0x
|
|
|
|
or
|
|
|
|
.Ql 0X ,
|
|
|
|
in base 8 if it begins with
|
|
|
|
.Ql 0 ,
|
|
|
|
and in base 10 otherwise.
|
|
|
|
Only characters that correspond to the base are used.
|
|
|
|
.It Cm o
|
|
|
|
Matches an octal integer;
|
|
|
|
the next pointer must be a pointer to
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt "unsigned int" .
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Cm u
|
|
|
|
Matches an optionally signed decimal integer;
|
|
|
|
the next pointer must be a pointer to
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt "unsigned int" .
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.It Cm x , X
|
1994-05-27 05:00:24 +00:00
|
|
|
Matches an optionally signed hexadecimal integer;
|
|
|
|
the next pointer must be a pointer to
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt "unsigned int" .
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.It Cm e , E , f , F , g , G
|
1994-05-27 05:00:24 +00:00
|
|
|
Matches an optionally signed floating-point number;
|
|
|
|
the next pointer must be a pointer to
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt float .
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.It Cm a , A
|
|
|
|
Matches a hexadecimal number represented in the style
|
|
|
|
.Sm off
|
|
|
|
.Oo \- Oc Li 0x Ar h Li \&. Ar hhh Cm p Oo \\*[Pm] Oc Ar d .
|
|
|
|
.Sm on
|
|
|
|
This is an exact conversion of the sign, exponent, mantissa internal
|
|
|
|
floating point representation; the
|
|
|
|
.Sm off
|
|
|
|
.Oo \- Oc Li 0x Ar h Li \&. Ar hhh
|
|
|
|
.Sm on
|
|
|
|
portion represents exactly the mantissa; only denormalized
|
|
|
|
mantissas have a zero value to the left of the hexadecimal
|
|
|
|
point.
|
|
|
|
The
|
|
|
|
.Cm p
|
|
|
|
is a literal character
|
|
|
|
.Ql p ;
|
|
|
|
the exponent is preceded by a positive or negative sign
|
|
|
|
and is represented in decimal.
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Cm s
|
|
|
|
Matches a sequence of non-white-space characters;
|
|
|
|
the next pointer must be a pointer to
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt char ,
|
1994-05-27 05:00:24 +00:00
|
|
|
and the array must be large enough to accept all the sequence and the
|
|
|
|
terminating
|
|
|
|
.Dv NUL
|
|
|
|
character.
|
|
|
|
The input string stops at white space
|
|
|
|
or at the maximum field width, whichever occurs first.
|
2002-09-23 11:35:50 +00:00
|
|
|
.Pp
|
|
|
|
If an
|
|
|
|
.Cm l
|
|
|
|
qualifier is present, the next pointer must be a pointer to
|
|
|
|
.Vt wchar_t ,
|
|
|
|
into which the input will be placed after conversion by
|
|
|
|
.Xr mbrtowc 3 .
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.It Cm S
|
|
|
|
The same as
|
|
|
|
.Cm ls .
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Cm c
|
|
|
|
Matches a sequence of
|
|
|
|
.Em width
|
|
|
|
count
|
|
|
|
characters (default 1);
|
|
|
|
the next pointer must be a pointer to
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt char ,
|
1994-05-27 05:00:24 +00:00
|
|
|
and there must be enough room for all the characters
|
|
|
|
(no terminating
|
|
|
|
.Dv NUL
|
|
|
|
is added).
|
|
|
|
The usual skip of leading white space is suppressed.
|
|
|
|
To skip white space first, use an explicit space in the format.
|
2002-09-23 11:35:50 +00:00
|
|
|
.Pp
|
|
|
|
If an
|
|
|
|
.Cm l
|
|
|
|
qualifier is present, the next pointer must be a pointer to
|
|
|
|
.Vt wchar_t ,
|
|
|
|
into which the input will be placed after conversion by
|
|
|
|
.Xr mbrtowc 3 .
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.It Cm C
|
|
|
|
The same as
|
|
|
|
.Cm lc .
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Cm \&[
|
|
|
|
Matches a nonempty sequence of characters from the specified set
|
|
|
|
of accepted characters;
|
|
|
|
the next pointer must be a pointer to
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt char ,
|
1994-05-27 05:00:24 +00:00
|
|
|
and there must be enough room for all the characters in the string,
|
|
|
|
plus a terminating
|
|
|
|
.Dv NUL
|
|
|
|
character.
|
|
|
|
The usual skip of leading white space is suppressed.
|
|
|
|
The string is to be made up of characters in
|
|
|
|
(or not in)
|
|
|
|
a particular set;
|
|
|
|
the set is defined by the characters between the open bracket
|
|
|
|
.Cm [
|
|
|
|
character
|
|
|
|
and a close bracket
|
|
|
|
.Cm ]
|
|
|
|
character.
|
|
|
|
The set
|
|
|
|
.Em excludes
|
|
|
|
those characters
|
|
|
|
if the first character after the open bracket is a circumflex
|
|
|
|
.Cm ^ .
|
|
|
|
To include a close bracket in the set,
|
|
|
|
make it the first character after the open bracket
|
|
|
|
or the circumflex;
|
|
|
|
any other position will end the set.
|
|
|
|
The hyphen character
|
|
|
|
.Cm -
|
|
|
|
is also special;
|
|
|
|
when placed between two other characters,
|
|
|
|
it adds all intervening characters to the set.
|
|
|
|
To include a hyphen,
|
|
|
|
make it the last character before the final close bracket.
|
|
|
|
For instance,
|
|
|
|
.Ql [^]0-9-]
|
2002-05-30 09:53:47 +00:00
|
|
|
means the set
|
|
|
|
.Dq "everything except close bracket, zero through nine, and hyphen" .
|
1994-05-27 05:00:24 +00:00
|
|
|
The string ends with the appearance of a character not in the
|
|
|
|
(or, with a circumflex, in) set
|
|
|
|
or when the field width runs out.
|
2002-09-23 11:35:50 +00:00
|
|
|
.Pp
|
|
|
|
If an
|
|
|
|
.Cm l
|
|
|
|
qualifier is present, the next pointer must be a pointer to
|
|
|
|
.Vt wchar_t ,
|
|
|
|
into which the input will be placed after conversion by
|
|
|
|
.Xr mbrtowc 3 .
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Cm p
|
|
|
|
Matches a pointer value (as printed by
|
|
|
|
.Ql %p
|
|
|
|
in
|
|
|
|
.Xr printf 3 ) ;
|
|
|
|
the next pointer must be a pointer to
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt void .
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Cm n
|
|
|
|
Nothing is expected;
|
|
|
|
instead, the number of characters consumed thus far from the input
|
|
|
|
is stored through the next pointer,
|
|
|
|
which must be a pointer to
|
2002-05-30 09:53:47 +00:00
|
|
|
.Vt int .
|
1994-05-27 05:00:24 +00:00
|
|
|
This is
|
|
|
|
.Em not
|
|
|
|
a conversion, although it can be suppressed with the
|
|
|
|
.Cm *
|
|
|
|
flag.
|
|
|
|
.El
|
|
|
|
.Pp
|
2001-02-10 05:52:59 +00:00
|
|
|
The decimal point
|
2001-02-10 10:26:52 +00:00
|
|
|
character is defined in the program's locale (category
|
|
|
|
.Dv LC_NUMERIC ) .
|
2001-02-10 05:52:59 +00:00
|
|
|
.Pp
|
2002-05-30 09:53:47 +00:00
|
|
|
For backwards compatibility, a
|
|
|
|
.Dq conversion
|
|
|
|
of
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ql %\e0
|
|
|
|
causes an immediate return of
|
|
|
|
.Dv EOF .
|
|
|
|
.Sh RETURN VALUES
|
|
|
|
These
|
|
|
|
functions
|
|
|
|
return
|
|
|
|
the number of input items assigned, which can be fewer than provided
|
|
|
|
for, or even zero, in the event of a matching failure.
|
|
|
|
Zero
|
|
|
|
indicates that, while there was input available,
|
|
|
|
no conversions were assigned;
|
|
|
|
typically this is due to an invalid input character,
|
|
|
|
such as an alphabetic character for a
|
|
|
|
.Ql %d
|
|
|
|
conversion.
|
|
|
|
The value
|
|
|
|
.Dv EOF
|
|
|
|
is returned if an input failure occurs before any conversion such as an
|
2000-03-02 09:14:21 +00:00
|
|
|
end-of-file occurs.
|
|
|
|
If an error or end-of-file occurs after conversion
|
1994-05-27 05:00:24 +00:00
|
|
|
has begun,
|
|
|
|
the number of conversions which were successfully completed is returned.
|
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr getc 3 ,
|
2002-09-24 09:22:47 +00:00
|
|
|
.Xr mbrtowc 3 ,
|
1997-01-20 23:23:22 +00:00
|
|
|
.Xr printf 3 ,
|
|
|
|
.Xr strtod 3 ,
|
|
|
|
.Xr strtol 3 ,
|
2002-09-24 09:22:47 +00:00
|
|
|
.Xr strtoul 3 ,
|
|
|
|
.Xr wscanf 3
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh STANDARDS
|
|
|
|
The functions
|
|
|
|
.Fn fscanf ,
|
|
|
|
.Fn scanf ,
|
2002-12-20 07:46:01 +00:00
|
|
|
.Fn sscanf ,
|
|
|
|
.Fn vfscanf ,
|
|
|
|
.Fn vscanf
|
1994-05-27 05:00:24 +00:00
|
|
|
and
|
2002-12-20 07:46:01 +00:00
|
|
|
.Fn vsscanf
|
1994-05-27 05:00:24 +00:00
|
|
|
conform to
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.St -isoC-99 .
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh BUGS
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
Earlier implementations of
|
|
|
|
.Nm
|
|
|
|
treated
|
|
|
|
.Cm \&%D , \&%E , \&%F , \&%O
|
1994-05-27 05:00:24 +00:00
|
|
|
and
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.Cm \&%X
|
|
|
|
as their lowercase equivalents with an
|
|
|
|
.Cm l
|
2002-05-30 09:53:47 +00:00
|
|
|
modifier.
|
|
|
|
In addition,
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.Nm
|
|
|
|
treated an unknown conversion character as
|
|
|
|
.Cm \&%d
|
|
|
|
or
|
|
|
|
.Cm \&%D ,
|
2002-05-30 09:53:47 +00:00
|
|
|
depending on its case.
|
|
|
|
This functionality has been removed.
|
1994-05-27 05:00:24 +00:00
|
|
|
.Pp
|
|
|
|
Numerical strings are truncated to 512 characters; for example,
|
|
|
|
.Cm %f
|
|
|
|
and
|
|
|
|
.Cm %d
|
|
|
|
are implicitly
|
|
|
|
.Cm %512f
|
|
|
|
and
|
|
|
|
.Cm %512d .
|
Implement several of the c99 updates to scanf(3):
- New length modifiers: hh, j, ll, t, z.
Still to do:
- %C, %S, %lc, %ls (wide character support)
- %a/%A (exact hex representation of floating-point numbers)
Removed old compatability equivalents:
- %D for %ld, %O for %lo, %X for %lx, %E and %F for %le & %lf (these
were buggy anyway, since they should have represented %Le & %Lf).
- %[unknown uppercase char] for %ld, %[unknown lowercase char] for %d
2002-04-20 17:00:56 +00:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Cm %n$
|
|
|
|
modifiers for positional arguments are not implemented.
|
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Cm \&%a
|
|
|
|
and
|
|
|
|
.Cm \&%A
|
|
|
|
floating-point formats are not implemented.
|
2003-01-06 06:19:19 +00:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
family of functions do not correctly handle multibyte characters in the
|
|
|
|
.Fa format
|
|
|
|
argument.
|