website

Website contents
git clone git://git.reagancfischer.dev/website.git
Log | Files | Refs

util.h (213B)


      1 /* util.h */
      2 #ifndef UTIL_H
      3 #define UTIL_H
      4 #include "hash_table.h"
      5 int cmp_string(const void *key1, const void *key2);
      6 unsigned int hash_string(const void *key);
      7 void dtor_string(void *value, int is_key);
      8 #endif
      9