modified: diffout.py
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / scanf
blob5627c6f1df8e359f5871442d35b6eb6cfb26225e
1 NAME
2     scanf - formatted scan of characters read from standard input
4 SYNOPSIS
5     scanf(fmt, x_1, x_2, ...)
7 TYPES
8     fmt                 string
9     x_1, x_2, ...       lvalues
11     return      null, nonnegative integer, or error value
13 DESCRIPTION
14     This does the same as fscanf(files(0), fmt, x_1, x_2, ...).
15     For details see fscanf.
17 EXAMPLE
18     ; global a, b, c
19     ; scanf("%5c", a)
20         1
21     ; a
22         "Alpha"
24 LIMITS
25     The number of arguments is not to exceed 1024.
27 LINK LIBRARY
28     int scanfstr(char *str, char *fmt, int count, VALUE **vals);
30 SEE ALSO
31     scan, strscan, fscanf, strscanf, scanf, printf, fprintf
33 ## Copyright (C) 1999-2006  Landon Curt Noll
35 ## Calc is open software; you can redistribute it and/or modify it under
36 ## the terms of the version 2.1 of the GNU Lesser General Public License
37 ## as published by the Free Software Foundation.
39 ## Calc is distributed in the hope that it will be useful, but WITHOUT
40 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
41 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
42 ## Public License for more details.
44 ## A copy of version 2.1 of the GNU Lesser General Public License is
45 ## distributed with calc under the filename COPYING-LGPL.  You should have
46 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
47 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
49 ## @(#) $Revision: 30.1 $
50 ## @(#) $Id: scanf,v 30.1 2007/03/16 11:10:42 chongo Exp $
51 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/scanf,v $
53 ## Under source code control:   1996/04/30 03:05:18
54 ## File existed as early as:    1996
56 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
57 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/