hash.c 605 Bytes
#define _GNU_SOURCE

#include <search.h>
#include <stdarg.h>

#include "hash.h"
#include "class.h"
#include "interface/class.h"

static
int
hashCtor(void * _this, va_list * params)
{
	return 0;
}

static
inline
void
tDelete(void * node)
{
	delete(node);
}

static
void
hashDtor(void * _this)
{
	Hash this = _this;

	/**
	 * this is a GNU extension...anyway on most non
	 * GNUish systems i would not use tsearch anyway
	 * as the trees will be unbalanced.
	 */
	tdestroy(this->root, tDelete);
}

INIT_IFACE(Class, hashCtor, hashDtor, NULL);
CREATE_CLASS(Hash, NULL, IFACE(Class));

// vim: set ts=4 sw=4: