summaryrefslogtreecommitdiffstats
path: root/strduptab.h
diff options
context:
space:
mode:
authorSimon Rettberg2017-04-21 16:48:09 +0200
committerSimon Rettberg2017-04-21 16:48:09 +0200
commitcab08b7e3fcbec061c12b842cf66a8e7d22b11d3 (patch)
tree82e450cf27b86d6315eaebe76a8dc7c291f12476 /strduptab.h
parentRemove unused string matching helpers (diff)
downloadldadp-cab08b7e3fcbec061c12b842cf66a8e7d22b11d3.tar.gz
ldadp-cab08b7e3fcbec061c12b842cf66a8e7d22b11d3.tar.xz
ldadp-cab08b7e3fcbec061c12b842cf66a8e7d22b11d3.zip
Delete some more unused files
Diffstat (limited to 'strduptab.h')
-rw-r--r--strduptab.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/strduptab.h b/strduptab.h
deleted file mode 100644
index 2bbc67c..0000000
--- a/strduptab.h
+++ /dev/null
@@ -1,13 +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 pointer". Will try to insert the
- * string in the table. If the same string was already there, it will
- * return a pointer to that string, otherwise it will insert a copy of
- * the new string. */
-
-struct stringduptable {
- size_t n,a;
- const char** s;
-};
-
-const char* strduptab_add(struct stringduptable* t,const char* s);