1990-07-18 14:53:19 +00:00
|
|
|
/*
|
|
|
|
* This file contains the structures that hold information about the labels.
|
|
|
|
* The height and the fallthrough functions of the table.
|
|
|
|
*
|
|
|
|
* Author: Hans van Eck.
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct label *label_p;
|
|
|
|
|
2006-07-21 10:35:34 +00:00
|
|
|
struct label {
|
1990-07-18 14:53:19 +00:00
|
|
|
label_p lb_next;
|
|
|
|
word lb_number;
|
|
|
|
int lb_height;
|
|
|
|
short lb_fallthrough;
|
2006-07-21 10:35:34 +00:00
|
|
|
};
|
1990-07-18 14:53:19 +00:00
|
|
|
|
2017-11-13 17:44:17 +00:00
|
|
|
void add_label(int, int, int);
|
|
|
|
label_p get_label(word);
|
|
|
|
void kill_labels(void);
|