aboutsummaryrefslogtreecommitdiff
path: root/trie.h
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-02-19 01:25:45 +0100
committerHugo Hörnquist <hugo@hornquist.se>2019-02-19 01:25:45 +0100
commit3362e2fb538c9426635e2fda8d9737662b48fc06 (patch)
treeb7fe6dc049bb7a86e5ece3500bafaf8992984f9c /trie.h
parentStarted full rewrite in C++. (diff)
downloadcalp-3362e2fb538c9426635e2fda8d9737662b48fc06.tar.gz
calp-3362e2fb538c9426635e2fda8d9737662b48fc06.tar.xz
I somehow got stuff to bulid, now it just doesn't link.
Diffstat (limited to 'trie.h')
-rw-r--r--trie.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/trie.h b/trie.h
index d672125b..880716e8 100644
--- a/trie.h
+++ b/trie.h
@@ -36,25 +36,4 @@ struct trie {
template <class T>
std::ostream& operator<<(std::ostream&, trie<T>* trie);
-
-// INIT_F ( TRIE(TYPE) );
-
-// INIT_F (TRIE_NODE(TYPE), char c);
-
-// INIT_F (TRIE_NODE(TYPE),
-// char c, TRIE_NODE(TYPE)* next, TRIE_NODE(TYPE)* child );
-
-// int PUSH(TRIE(TYPE)) ( TRIE(TYPE)* trie, char* key, TYPE* val );
-
-// TYPE* GET(TRIE(TYPE)) ( TRIE(TYPE)* trie, char* key );
-
-// FREE_F(TRIE_NODE(TYPE));
-
-// FREE_F(TRIE(TYPE));
-
-// int EMPTY(TRIE(TYPE))(TRIE(TYPE)*);
-
-// FMT_F(TRIE_NODE(TYPE));
-// FMT_F(TRIE(TYPE));
-
#endif /* TRIE_H */