#pragma once #include // TODO: change value to char* bool hash_index_set( const char* index, const char* key, int value ); bool hash_index_get( const char* index, const char* key, int* value ); bool hash_index_remove( const char* index, const char* key ); bool ffdb_hash_set( const char* index, const char* key, const char* value ); char* ffdb_hash_get( const char* index, const char* key ); bool ffdb_hash_remove( const char* index, const char* key );