summaryrefslogtreecommitdiff
path: root/include/parserutils/utils/hash.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2009-02-14 19:18:33 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2009-02-14 19:18:33 +0000
commitbf44aeaf5cd7f03d3bd842c8046b7346c5035f06 (patch)
tree896fcb86e24952dfea9fa1414fdd3c59e509fa9b /include/parserutils/utils/hash.h
parent0323c5c6f9f6d27b7aab2ac5da0b98e6468a4d72 (diff)
downloadlibparserutils-bf44aeaf5cd7f03d3bd842c8046b7346c5035f06.tar.gz
libparserutils-bf44aeaf5cd7f03d3bd842c8046b7346c5035f06.tar.bz2
Remove dict, hash and rbtree from libparserutils
svn path=/trunk/libparserutils/; revision=6512
Diffstat (limited to 'include/parserutils/utils/hash.h')
-rw-r--r--include/parserutils/utils/hash.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/include/parserutils/utils/hash.h b/include/parserutils/utils/hash.h
deleted file mode 100644
index 92f0236..0000000
--- a/include/parserutils/utils/hash.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * This file is part of LibParserUtils.
- * Licensed under the MIT License,
- * http://www.opensource.org/licenses/mit-license.php
- * Copyright 2008 John-Mark Bell <jmb@netsurf-browser.org>
- */
-
-#ifndef parserutils_utils_hash_h_
-#define parserutils_utils_hash_h_
-
-#include <parserutils/errors.h>
-#include <parserutils/functypes.h>
-
-typedef struct parserutils_hash_entry {
- uint16_t len;
- const uint8_t data[];
-} parserutils_hash_entry;
-
-struct parserutils_hash;
-typedef struct parserutils_hash parserutils_hash;
-
-parserutils_error parserutils_hash_create(parserutils_alloc alloc, void *pw,
- parserutils_hash **hash);
-parserutils_error parserutils_hash_destroy(parserutils_hash *hash);
-
-parserutils_error parserutils_hash_insert(parserutils_hash *hash,
- const uint8_t *data, uint16_t len,
- const parserutils_hash_entry **inserted);
-
-#endif
-