diff options
author | gumi <git@gumi.ca> | 2018-03-26 17:11:34 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2018-03-26 17:11:34 -0400 |
commit | 3a56da3c09845676534f460f75c8adb6c65fbb79 (patch) | |
tree | b37c703cc7dc07725235a5d916db5d83b65e8ecf /src/emap/hashtable.h | |
parent | c3262df069c597bd3c56e167cadc077c077d0096 (diff) | |
download | evol-hercules-3a56da3c09845676534f460f75c8adb6c65fbb79.tar.gz evol-hercules-3a56da3c09845676534f460f75c8adb6c65fbb79.tar.bz2 evol-hercules-3a56da3c09845676534f460f75c8adb6c65fbb79.tar.xz evol-hercules-3a56da3c09845676534f460f75c8adb6c65fbb79.zip |
add missing hashtable iterator buildinss20180406
Diffstat (limited to 'src/emap/hashtable.h')
-rw-r--r-- | src/emap/hashtable.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emap/hashtable.h b/src/emap/hashtable.h index 44712cd..403304e 100644 --- a/src/emap/hashtable.h +++ b/src/emap/hashtable.h @@ -31,7 +31,10 @@ struct htreg_interface bool (*destroy_iterator) (int64 id); bool (*iterator_check) (int64 id); bool (*iterator_exists) (int64 id); + const char* (*iterator_firstkey) (int64 id); + const char* (*iterator_lastkey) (int64 id); const char* (*iterator_nextkey) (int64 id); + const char* (*iterator_prevkey) (int64 id); }; void htreg_defaults(void); |