| 118 | |
| 119 | /* list of labels or gotos */ |
| 120 | typedef struct Labellist { |
| 121 | Labeldesc *arr; /* array */ |
| 122 | int n; /* number of entries in use */ |
| 123 | int size; /* array size */ |
| 124 | } Labellist; |
| 125 | |
| 126 | |
| 127 | /* dynamic structures used by the parser */ |
nothing calls this directly
no outgoing calls
no test coverage detected