/usr/share/calc/help/fscanf is in apcalc-common 2.12.4.4-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | NAME
    fscanf - formatted scan of a file stream
SYNOPSIS
    fscanf(fs, fmt, x_1, x_2, ...)
TYPES
    fs			file stream open for reading
    fmt			string
    x_1, x_2, ...	lvalues
    return	null, nonnegative integer, or error value
DESCRIPTION
    If the current position for fs is EOF, the null value is returned.
    Otherwise, until the terminating null character of fmt is encountered
    or end-of-file for fs is reached, characters other than '%' and white
    space are read from fmt and compared with the corresponding characters
    read from fs.  If the characters match, the reading continues.  If they
    do not match, an integer value is returned and the file position for
    fs is the position of the non-matching character.  If white space
    is encountered in fmt, any white space characters read from
    fs are skipped until either end-of-file is reached or a non-white-space
    character is read and comparisons continue under the control of the
    next non-white character and following characters in fmt.
    When a '%' is encountered in fmt, if this is immediately followed by
    another '%', the pair is considered as if just one '%' were read and
    if reading from fmt and fs continues if and only if fs has a matching
    '%'.  A single '%' read from fmt is taken to indicate the beginning of
    a conversion specification field consisting in succession of:
		an optional '*',
		optional decimal digits,
		one of 'c', 's', 'n', 'f', 'e', 'i' or a scanset specifier.
    A scanset specifier starts with '[' and an optional '^', then an optional
    ']', then optional other characters, and ends with ']'.   If any
    other sequence of characters follows the '%', characters before the
    first exceptional character (which could be the terminating null
    character of the fmt string) are ignored, e.g. the sequence " %*3d " does
    the same as " d ".	If there is no '*' at the beginning of the specifier,
    and the list x_1, x_2, ... has not been exhausted,
    a value will be assigned to the next lvalue in the list; if no lvalue
    remains, the reading of fs stops and the function returns the number
    of assignments that have been made.
    Occurrence of '*' indicates that characters as specified are to be read
    but no assignment will be made.
    The digits, if any, read at this stage in the specifier are taken to
    be decimal digits of an integer which becomes the maximum "width"
    (i.e. for string-type values, the number of characters to be read from
    fs); absence of digits or all zero digits in the 'c'
    case are taken to mean width = 1.  Zero width for the other cases are
    treated as if infinite.   Fewer characters than the specifier width
    may be read if end-of-file is reached or in the case of scanset
    specification, an exceptional character is encountered.
    If the ending character is 'c', characters are read from fs to
    form a string, which will be ignored or in the non-'*' case, assigned
    to the next lvalue.
    In the 's' case, reading to form the string starts at the first non-white
    character (if any) and ceases when end-of-file or further white space
    is encountered or the specified width has been attained.
    The cases 'f', 'e', 'r', 'i' may be considered to indicate expectation of
    floating-point, exponential, ratio, or integer representation of the
    number to be read.	For example, 'i'
    might be taken to suggest a number like +2345; 'r' might suggest
    a representation like -27/49; 'e' might suggest a representation like
    1.24e-7; 'f' might suggest a representation like 27.145. However, there
    is no test that the result conforms to the specifier.  Whatever
    the specifier in these cases, the result depends on the characters read
    until a space or other exceptional character is read.  The
    characters read may include one or more occurrences of +, -, * as
    well as /, interpreted in the usual way, with left-to-right associativity
    for + and -, and for * and /.  Also acceptable is a trailing i to
    indicate an imaginary number.  For example the expression
			2+3/4*7i+3.15e7
    would be interpreted as for an ordinary evaluation.	 A decimal fraction
    may have more than one dot: dots after the first, which is taken to be
    the decimal point, are ignored.  Thus "12.3..45e6.7" is interpreted
    as if it were "12.345e67".
    For the number specifiers 'f', 'e', 'r', 'i', any specified width is
    ignored.
    For the specifier 'n', the current value of the file-position indicator
    is assigned to the corresponding lvalue. (Any width or skip specification
    is ignored.)
EXAMPLE
    ; global a, b, c
    ; f = fopen("/tmp/junk", "w+")
    ; fputs(f, "Alpha Beta Gamma")
    ; rewind(f)
    ; fscanf(f, "Alpha Gamma")
    ; fgets(f)
	"Beta Gamma"
    ; rewind(f)
    ; fscanf(f, "%5c", a)
	1
    ; a
	"Alpha"
    ; fgets(f)
	" Beta Gamma"
    ; rewind(f)
    ; fscanf(f, "%3c%s%[^m]", a, b, c)
	3
    ; print a, b
    Alp ha
    ; print c
    Beta Ga
    ; fgets(f)
	"mma"
LIMITS
    The number of arguments is not to exceed 1024.
LINK LIBRARY
    extern int fscanfid(FILEID id, char *fmt, int count, VALUE **vals);
SEE ALSO
    scanf, strscanf, printf, fprintf, strprintf, fscan, scan, strscan
## Copyright (C) 1999-2006  Landon Curt Noll
##
## Calc is open software; you can redistribute it and/or modify it under
## the terms of the version 2.1 of the GNU Lesser General Public License
## as published by the Free Software Foundation.
##
## Calc is distributed in the hope that it will be useful, but WITHOUT
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
## or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU Lesser General
## Public License for more details.
##
## A copy of version 2.1 of the GNU Lesser General Public License is
## distributed with calc under the filename COPYING-LGPL.  You should have
## received a copy with calc; if not, write to Free Software Foundation, Inc.
## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
##
## @(#) $Revision: 30.1 $
## @(#) $Id: fscanf,v 30.1 2007/03/16 11:10:42 chongo Exp $
## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/fscanf,v $
##
## Under source code control:	1996/04/30 03:05:18
## File existed as early as:	1996
##
## chongo <was here> /\oo/\	http://www.isthe.com/chongo/
## Share and enjoy!  :-)	http://www.isthe.com/chongo/tech/comp/calc/
 |