dict-cache.c revision d5cebe7f98e63d4e2822863ef2faa4971e8b3a5d
/* Copyright (C) 2005 Timo Sirainen */
#include "lib.h"
#include "hash.h"
#include "dict.h"
#include "dict-cache.h"
struct dict_entry {
int refcount;
char *uri;
};
struct dict_cache {
};
struct dict_cache *dict_cache_init(void)
{
struct dict_cache *cache;
return cache;
}
{
}
{
struct dict_entry *entry;
}
}
{
struct dict_entry *entry;
return;
}