Synopsis
typedef struct {
  unsigned short next_offset;
  unsigned short line_number;
} NB_LINE_HEADER_t;
Description

NB_LINE_HEADER_t is the structure of a line header which comes immediately before the tokens comprising the line.

next_offset
Self-relative byte offset to next line. NOTE: could shorten this to an unsigned char, limit lines to 255 bytes in total, and then use the extra byte for a set of flags (e.g. breakpoint flags...)
line_number
The CoreBASIC line number.