1
2
3
4
5
6
7
8
9 dcl increment_table(0:20) fixed bin internal static options(constant) init(
10
11 3, 4, 4, 3, 4, 3, 4, 0, 0, 3, 3, 3, 2, 3, 2, 2, 1, 1, 1, 3, 1);
12
13
14
15
16
17 dcl
18 1 runtime_format based aligned structure,
19 2 last_left_paren fixed bin(17) unaligned,
20 2 format_desc_bits unaligned structure,
21 3 anyitems bit(1),
22 3 v_format bit(1),
23 3 s_format bit(1),
24 3 contains_hollerith bit(1),
25 3 pad bit(2),
26 2 fmt_len fixed bin(11) unaligned,
27 2 fmt(1022) fixed bin(17) unaligned;
28
29
30
31
32 dcl 1 format_error aligned based structure,
33 2 input_length fixed bin,
34 2 error_message char(128);
35
36
37
38
39 dcl (
40 end_of_format init(20),
41 hollerith_field init(11),
42 quoted_string init(19)) fixed bin int static options(constant);
43
44