| 14 | } CBMMacroEntry; |
| 15 | |
| 16 | typedef struct CBMMacroTable { |
| 17 | CBMMacroEntry entries[CBM_MACRO_TABLE_CAP]; |
| 18 | int count; |
| 19 | CBMArena arena; |
| 20 | } CBMMacroTable; |
| 21 | |
| 22 | // Add an entry. Silently drops on overflow. |
| 23 | void cbm_macro_table_add(CBMMacroTable *t, CBMArena *arena, const char *name, int param_count, |
nothing calls this directly
no outgoing calls
no test coverage detected