Codebase list bglibs / fresh-snapshots/main dict / init.c
fresh-snapshots/main

Tree @fresh-snapshots/main (Download .tar.gz)

init.c @fresh-snapshots/mainraw · history · blame

1
2
3
4
5
6
7
8
#include "dict.h"

int dict_init(dict* d)
{
  d->count = d->size = 0;
  d->table = 0;
  return 1;
}