Headers/RB_header [ Structures ]

FUNCTION

This structure is used to store the headers that are extracted from the source files.

MODIFICATION HISTORY

ATTRIBUTES

SOURCE

struct RB_header
{
    struct RB_header   *next;
    struct RB_header   *parent;
    struct RB_Part     *owner;
    struct RB_HeaderType *htype;
    struct RB_Item     *items;
    int                 is_internal;
    char               *name;
    char              **names;
    int                 no_names;
    char               *version;
    char               *function_name;
    char               *module_name;
    char               *unique_name;
    char               *file_name;
    struct RB_header_lines *lines;
    int                 no_lines;
    int                 line_number;
};