Items/RB_Item [ Structures ]

FUNCTION

Keeps track of where items start end end in the header. The index numbers point to the lines array in RB_header.

SOURCE

struct RB_Item
{
    struct RB_Item     *next;
    enum ItemType       type;
    int                 no_lines;
    struct RB_Item_Line **lines;
    int                 begin_index;
    int                 end_index;
    int                 max_line_number;
};