# ht **Repository Path**: mirrors_nicolasff/ht ## Basic Information - **Project Name**: ht - **Description**: A simple hash table with non-blocking resize - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2025-12-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### Description `ht` is a very simple Hash Table library written in C. ### Features * String hashing only. * Optional redefinition of the key hash function (“[djb2](http://www.cse.yorku.ca/~oz/hash.html)” by default). * Store any data (`void*`). * Non-blocking resize. * Optional key alloc/free functions. If none are specified, the key is **not** copied. Multi-threading support will not be added.