hashindex: remove declarations of removed functions

This commit is contained in:
Marian Beermann 2016-07-09 01:26:59 +02:00
parent 3a81a947a1
commit 5d2dbffbcd
No known key found for this signature in database
GPG Key ID: 9B8450B91D1362C1
1 changed files with 0 additions and 2 deletions

View File

@ -14,8 +14,6 @@ cdef extern from "_hashindex.c":
HashIndex *hashindex_read(char *path) HashIndex *hashindex_read(char *path)
HashIndex *hashindex_init(int capacity, int key_size, int value_size) HashIndex *hashindex_init(int capacity, int key_size, int value_size)
void hashindex_free(HashIndex *index) void hashindex_free(HashIndex *index)
void hashindex_merge(HashIndex *index, HashIndex *other)
void hashindex_add(HashIndex *index, void *key, void *value)
int hashindex_get_size(HashIndex *index) int hashindex_get_size(HashIndex *index)
int hashindex_write(HashIndex *index, char *path) int hashindex_write(HashIndex *index, char *path)
void *hashindex_get(HashIndex *index, void *key) void *hashindex_get(HashIndex *index, void *key)