From ef71b3d9674cc97e3a4b8a7cf62ab5ff043a2c77 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Sat, 4 Dec 2010 19:03:19 +0000 Subject: Remove init/final and embed entity trie at build time. r=vince svn path=/trunk/hubbub/; revision=10976 --- src/utils/dict.h | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 src/utils/dict.h (limited to 'src/utils/dict.h') diff --git a/src/utils/dict.h b/src/utils/dict.h deleted file mode 100644 index 9718542..0000000 --- a/src/utils/dict.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * This file is part of Hubbub. - * Licensed under the MIT License, - * http://www.opensource.org/licenses/mit-license.php - * Copyright 2007 John-Mark Bell - */ - -#ifndef hubbub_utils_dict_h_ -#define hubbub_utils_dict_h_ - -#include - -#include -#include - -typedef struct hubbub_dict hubbub_dict; - -/* Create a dictionary */ -hubbub_error hubbub_dict_create(hubbub_allocator_fn alloc, void *pw, - hubbub_dict **dict); -/* Destroy a dictionary */ -hubbub_error hubbub_dict_destroy(hubbub_dict *dict); - -/* Insert a key-value pair into a dictionary */ -hubbub_error hubbub_dict_insert(hubbub_dict *dict, const char *key, - const void *value); - -/* Step-wise search for a key in a dictionary */ -hubbub_error hubbub_dict_search_step(hubbub_dict *dict, uint8_t c, - const void **result, void **context); - -#endif -- cgit v1.2.3