Release calc version 2.11.0t10

This commit is contained in:
Landon Curt Noll
1999-11-11 05:15:39 -08:00
parent 86c8e6dcf1
commit 96c34adee3
283 changed files with 2380 additions and 3032 deletions

View File

@@ -17,7 +17,7 @@ DESCRIPTION
Otherwise, until the terminating null character of either fmt or str
is reached, characters other than '%' and whitespace are read from
fmt and compared with the corresponding characters read from str.
If the characters match, reading continues. If they do not match
If the characters match, reading continues. If they do not match
an integer value is returned. If whitespace is encountered in fmt,
starting at the current positions in fmt and str, any whitespace
characters are skipped and reading and comparison begins as before
@@ -29,7 +29,7 @@ DESCRIPTION
'%'. A single '%' read from fmt is taken to indicate the beginning of
a conversion specification field consisting in succession of:
an optional '*',
an optional '*',
optional decimal digits,
one of 'c', 's', 'n', 'f', 'e', 'i' or a scanset specifier.
@@ -38,7 +38,7 @@ DESCRIPTION
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,
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
@@ -65,7 +65,7 @@ DESCRIPTION
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'
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
@@ -79,7 +79,7 @@ DESCRIPTION
2+3/4*7i+3.15e7
would be interpreted as for an ordinary evaluation. A decimal fraction
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".