* @memberof ktxHashList @public * @~English * @brief Construct an empty hash list for storing key-value pairs. * * @param [in] pHead pointer to the location to write the list head. */
| 58 | * @param [in] pHead pointer to the location to write the list head. |
| 59 | */ |
| 60 | void |
| 61 | ktxHashList_Construct(ktxHashList* pHead) |
| 62 | { |
| 63 | *pHead = NULL; |
| 64 | } |
| 65 | |
| 66 | |
| 67 | /** |
no outgoing calls