| 155 | } |
| 156 | |
| 157 | static void DestroySimpleMap(PSIMPLE_MAP map) { |
| 158 | if (map->CharCharMap) |
| 159 | free(map->CharCharMap); |
| 160 | free(map); |
| 161 | } |
| 162 | |
| 163 | static void InsertMap(PSIMPLE_MAP map, int8_t k, int8_t v) { |
| 164 | for (uint32_t i = 0; i < map->CurMapCnt; i++) { |
no outgoing calls
no test coverage detected