/* $Id: init.c 616 2005-08-19 20:11:01Z bruce $ */ #include "dict.h" int dict_init(dict* d) { d->count = d->size = 0; d->table = 0; return 1; }