摘要:
#include <string.h>#ifdef DMALLOC#include <dmalloc.h>#else#include <stdlib.h>#endif#include "hash.h"#ifndef __USE_ISOC99#define inline#endifstruct hashentry{void *key;void *data;struct hashentry *next;};struct _hashtable{unsigned int (*gethash)(void *);int (*compare)(void *, void * 阅读全文
posted @ 2011-02-15 11:24
闲云blog
阅读(520)
评论(0)
推荐(0)
浙公网安备 33010602011771号