| 1325 | } pxc_module_entry_t; |
| 1326 | |
| 1327 | struct CBMModuleDefIndex { |
| 1328 | CBMHashTable *ht; /* module_qn → pxc_module_entry_t* */ |
| 1329 | CBMHashTable *namespace_ht; /* declared package/namespace → pxc_module_entry_t* */ |
| 1330 | int def_count; /* total entries in the all_defs[] array */ |
| 1331 | }; |
| 1332 | |
| 1333 | /* cbm_ht_foreach callback: free each pxc_module_entry_t. */ |
| 1334 | static void pxc_module_entry_free_cb(const char *key, void *value, void *userdata) { |
nothing calls this directly
no outgoing calls
no test coverage detected