Globals

[ Top ] [ ROBODoc ] [ Modules ]

FUNCTION

A number of global variables.

TODO

Documentation.


course_of_action

[ Top ] [ Globals ] [ Variables ]

NAME

course_of_action

FUNCTION

Global Variable that defines the course of action.

SOURCE

actions_t           course_of_action;

debugmode

[ Top ] [ Globals ] [ Variables ]

NAME

debugmode

FUNCTION

A bitfield determining the output levels

SOURCE

long                debugmode = 0;

document_title

[ Top ] [ Globals ] [ Variables ]

NAME

documentat_title -- title for the documentation.

PURPOSE

Used as the title for master index files or for latex documentation.

SOURCE

char               *document_title = NULL;

line_buffer

[ Top ] [ Globals ] [ Variables ]

NAME

line_buffer -- global line buffer

FUNCTION

Temporary storage area for lines that are read from an input file.

SOURCE

char                line_buffer[MAX_LINE_LEN];

line_number

[ Top ] [ Globals ] [ Variables ]

NAME

line_number -- global line counter

PURPOSE

Keeps track of the number of lines that are read from the source file.

AUTHOR

Koessi

SOURCE

int                 line_number = 0;

myLine

[ Top ] [ Globals ] [ Variables ]

NAME

myLine -- dynamic buffer for current line

FUNCTION

Temporary storage area for lines that are read from an input file.

SOURCE

char               *myLine = NULL;

output_mode

[ Top ] [ Globals ] [ Variables ]

NAME

output_mode -- the mode of output

FUNCTION

Controls which type of output will be generated.

SOURCE

T_RB_DocType        output_mode = ASCII;

readChars

[ Top ] [ Globals ] [ Variables ]

NAME

readChars -- number of characters in the currently bufferd line

FUNCTION

Temporary storage area for lines that are read from an input file.

SOURCE

int                 readChars = 0;