[utils] two set types in collections.h

This commit is contained in:
Al
2015-04-19 09:32:53 -04:00
parent 908e3dc03c
commit 9c0126a01c

View File

@@ -27,6 +27,11 @@ KHASH_MAP_INIT_STR(str_int, uint32_t)
KHASH_MAP_INIT_INT(int_str, char *)
KHASH_MAP_INIT_STR(str_str, char *)
// Sets
KHASH_SET_INIT_INT(int_set)
KHASH_SET_INIT_STR(str_set)
// Vectors
VECTOR_INIT_NUMERIC(int32_array, int32_t)