label.h 326 B

1234567891011121314151617
  1. /*
  2. * This file contains the structures that hold information about the labels.
  3. * The height and the fallthrough functions of the table.
  4. *
  5. * Author: Hans van Eck.
  6. */
  7. typedef struct label *label_p;
  8. struct label {
  9. label_p lb_next;
  10. word lb_number;
  11. int lb_height;
  12. short lb_fallthrough;
  13. };
  14. extern label_p get_label();