1 
 2 /* begin include file ... cobol_TYPE13.incl.pl1
 3 /* Last modified on 11/18/76 by ORN */
 4 
 5                     /* header */
 6      2 size fixed bin,
 7      2 line fixed bin,
 8      2 column fixed bin,
 9      2 type fixed bin,     /* cd = 13 */
10                     /* body */
11      2 string_ptr ptr,
12      2 prev_rec ptr,
13      2 info,
14           3 searched bit(1),
15           3 duplicate bit(1),
16           3 filler1 bit(6),
17      2 options,
18           3 input bit(1),
19           3 output bit(1),
20           3 initial bit(1),
21      2 def_line fixed bin,
22      2 cd_num fixed bin,
23      2 cd_seg fixed bin,
24      2 cd_off fixed bin(24),
25      2 max_redef fixed bin,
26      2 mdest fixed bin,
27      2 name_size fixed bin,
28      2 name char(0 refer(cdtoken.name_size));
29 
30 /* end include file ... cobol_TYPE13.incl.pl1 */
31