surface gcache_del()

This commit is contained in:
Jan-Piet Mens 2015-10-22 10:47:26 +02:00
parent b06f224e27
commit 8bd8263b52
2 changed files with 2 additions and 1 deletions

View File

@ -118,7 +118,7 @@ void gcache_close(struct gcache *gc)
free(gc);
}
static int gcache_del(struct gcache *gc, char *keystr)
int gcache_del(struct gcache *gc, char *keystr)
{
int rc;
MDB_val key;

View File

@ -21,6 +21,7 @@ long gcache_get(struct gcache *, char *key, char *buf, long buflen);
JsonNode *gcache_json_get(struct gcache *, char *key);
void gcache_dump(char *path, char *lmdbname);
void gcache_load(char *path, char *lmdbname);
int gcache_del(struct gcache *gc, char *keystr);
#endif
#endif