| 52 | } |
| 53 | |
| 54 | static int register_loader(const MGBOprLoader* loader) { |
| 55 | return insert_loader(&loader_maps, loader); |
| 56 | } |
| 57 | |
| 58 | static int delete_loader(LoaderMapVec* lm, const char* name) { |
| 59 | for (int i = 0; i < lm->size; ++i) { |
nothing calls this directly
no test coverage detected