From 48b6b9a7278fc321c9205a31815e9a148f4ab748 Mon Sep 17 00:00:00 2001 From: "Daniel C. Jones" Date: Fri, 7 Apr 2017 12:58:57 -0700 Subject: [PATCH] Remove declaration of unimplemented hattrie_dup function. Fixes #27 --- src/hat-trie.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hat-trie.h b/src/hat-trie.h index b6b0653..a646c94 100644 --- a/src/hat-trie.h +++ b/src/hat-trie.h @@ -30,7 +30,6 @@ typedef struct hattrie_t_ hattrie_t; hattrie_t* hattrie_create (void); // Create an empty hat-trie. void hattrie_free (hattrie_t*); // Free all memory used by a trie. -hattrie_t* hattrie_dup (const hattrie_t*); // Duplicate an existing trie. void hattrie_clear (hattrie_t*); // Remove all entries. size_t hattrie_size (const hattrie_t*); // Number of stored keys. size_t hattrie_sizeof (const hattrie_t*); // Memory used in structure in bytes.