* @brief hash lookup key. */
| 135 | * @brief hash lookup key. |
| 136 | */ |
| 137 | void* HashFindData(HashKey* key) { |
| 138 | HashKey* item = HashFind(key); |
| 139 | if (!item) { |
| 140 | return NULL; |
| 141 | } else { |
| 142 | return item->_data_ptr; |
| 143 | } |
| 144 | }; |
| 145 | |
| 146 | |
| 147 | /** |
no outgoing calls
no test coverage detected