Next: , Previous: Value Label Variable Record, Up: Data File Format



D.5 Document Record

There must be no more than one document record per system file. Document records must follow the variable records and precede the dictionary termination record.

     struct sysfile_document
       {
         int32               rec_type;
         int32               n_lines;
         char                lines[/* variable length */][80];
       };
int32 rec_type;
Record type. Always set to 6.
int32 n_lines;
Number of lines of documents present.
char lines[/* variable length */][80];
Document lines. The number of elements is defined by n_lines. Lines shorter than 80 characters are padded on the right with spaces.