Skip to content

Commit

Permalink
Remove declaration of unimplemented hattrie_dup function. Fixes #27
Browse files Browse the repository at this point in the history
  • Loading branch information
dcjones committed Apr 7, 2017
1 parent 57d008f commit 48b6b9a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/hat-trie.h
Expand Up @@ -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.
Expand Down

0 comments on commit 48b6b9a

Please sign in to comment.