summaryrefslogtreecommitdiff
path: root/set_linked_lists.c
diff options
context:
space:
mode:
Diffstat (limited to 'set_linked_lists.c')
-rw-r--r--set_linked_lists.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/set_linked_lists.c b/set_linked_lists.c
index ee0a021..86a53b3 100644
--- a/set_linked_lists.c
+++ b/set_linked_lists.c
@@ -242,6 +242,10 @@ int elt_of_set(const set s) {
return -1; // should raise exception... hope this will be handled properly
}
+int elt_of_set_heur(const set s, int h) {
+ return elt_of_set(s);
+}
+
void set_add_ip(int x, set s) {
element prev, iter, e;