1244:9a8e781258ac | 1245:721e2032fa25 |
---|---|
140 and then deallocates the entire memory for the map. | 140 and then deallocates the entire memory for the map. |
141 | 141 |
142 ## Implement own Map Structures | 142 ## Implement own Map Structures |
143 | 143 |
144 ```C | 144 ```C |
145 typedef struct cx_map_entry_s { | 145 typedef struct { |
146 const CxHashKey *key; | 146 const CxHashKey *key; |
147 void *value; | 147 void *value; |
148 } CxMapEntry; | 148 } CxMapEntry; |
149 ``` | 149 ``` |
150 | 150 |