db0b628497
a common Posix extension on BSD systems.
18 lines
326 B
C
18 lines
326 B
C
/*
|
|
* 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;
|
|
|
|
struct label {
|
|
label_p lb_next;
|
|
word lb_number;
|
|
int lb_height;
|
|
short lb_fallthrough;
|
|
};
|
|
|
|
extern label_p get_label();
|