From cab08b7e3fcbec061c12b842cf66a8e7d22b11d3 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Fri, 21 Apr 2017 16:48:09 +0200 Subject: Delete some more unused files --- mduptab.h | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 mduptab.h (limited to 'mduptab.h') diff --git a/mduptab.h b/mduptab.h deleted file mode 100644 index 5704e87..0000000 --- a/mduptab.h +++ /dev/null @@ -1,19 +0,0 @@ -/* save memory for constant strings by keeping a list of the ones that - * we already saw and not allocating memory for each new one. The only - * API is "add string and return offset". The offset is relative to the - * root of the pstorage_t. Will try to insert the string in the table. - * If the same string was already there, it will return offset of that - * string, otherwise it will insert a copy of the new string. */ - -#include "mstorage.h" - -typedef struct mduptable { - mstorage_t table,strings; - mstorage_t* Strings; -} mduptab_t; - -void mduptab_init(mduptab_t* t); -void mduptab_init_reuse(mduptab_t* t,mstorage_t* s); -long mduptab_add(mduptab_t* t,const char* s,size_t len); -long mduptab_adds(mduptab_t* t,const char* s); -void mduptab_reset(mduptab_t* t); -- cgit v1.2.3-55-g7522