Sync usage with man page.
[netbsd-mini2440.git] / external / ibm-public / postfix / dist / src / util / format_tv.in
bloba6b5848f483f829c5072aa0605a404d496b2ce5d
1 # Three digits in, 2/6 digits out, rounding down.
2 1110    2       6
3 111     2       6
4 11.1    2       6
5 1.11    2       6
6 0.111   2       6
7 0.0111  2       6
8 0.00111 2       6
9 0.000111        2       6
10 0.0000111       2       6
12 # One digit in. Must not produce spurious digits or trailing nulls.
14 1000    2       6
15 100     2       6
16 10      2       6
17 1       2       6
18 0.1     2       6
19 0.01    2       6
20 0.001   2       6
21 0.0001  2       6
22 0.00001 2       6
23 0.0000011       2       6
25 # Three digits in, 2/6 digits out, rounding up.
27 996     2       6
28 99.6    2       6
29 9.96    2       6
30 .996    2       6
31 .0996   2       6
32 .00996  2       6
33 .000996 2       6
35 # Three digits in, 1/6 digits out, rounding down.
37 1110    1       6
38 111     1       6
39 11.1    1       6
40 1.11    1       6
41 0.111   1       6
42 0.0111  1       6
43 0.00111 1       6
44 0.000111        1       6
45 0.000011        1       6
47 # One digit in. Must not produce trailing nulls.
49 1000    1       6
50 100     1       6
51 10      1       6
52 1       1       6
53 0.1     1       6
54 0.01    1       6
55 0.001   1       6
56 0.0001  1       6
57 0.00001 1       6
58 0.0000011       1       6
60 # Three digits in, 1/6 digits out, rounding up.
62 996     1       6
63 99.6    1       6
64 9.96    1       6
65 .996    1       6
66 .0996   1       6
67 .00996  1       6
68 .000996 1       6