chiark / gitweb /
(Slightly scrappy) new playlist box
[disorder] / lib / hash.h
index 1577e0354b5cbfc51e6e1d7374d6bc499017528e..f0efa54b4a8be345cd57f3769df3def27e8ce94b 100644 (file)
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+/** @file lib/hash.h
+ * @brief A simple hash table
+ */
 
 #ifndef HASH_H
 #define HASH_H
 
+/** @brief Hash structure
+ *
+ * A hash table has string keys and byte blocks of fixed size as values.
+ */
 typedef struct hash hash;
 struct kvp;