summaryrefslogtreecommitdiff
path: root/sets.h
diff options
context:
space:
mode:
authorAlex AUVOLAT <alex.auvolat@ens.fr>2013-11-18 20:01:05 +0100
committerAlex AUVOLAT <alex.auvolat@ens.fr>2013-11-18 20:01:05 +0100
commitfdd5de0c84cbddcc6b31d579d7006773682059ac (patch)
tree87be4a68469499912b3382887b9fc24fbc7c0912 /sets.h
parent91c9deef705fe60863ef32c86b81b8a94d35febf (diff)
downloadAlgoProg-Projet-fdd5de0c84cbddcc6b31d579d7006773682059ac.tar.gz
AlgoProg-Projet-fdd5de0c84cbddcc6b31d579d7006773682059ac.zip
Finished implementation of sets with linked lists.
Diffstat (limited to 'sets.h')
-rw-r--r--sets.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sets.h b/sets.h
index 930314d..44114d1 100644
--- a/sets.h
+++ b/sets.h
@@ -54,6 +54,7 @@ set set_diff(const set a, const set b);
bool is_set_empty(const set s);
bool set_mem(int x, const set s);
+bool sets_equal(const set a, const set b);
int elt_of_set(const set s);
@@ -63,6 +64,8 @@ void set_add_ip(int x, set s);
set set_remove(int x, const set s);
void set_remove_ip(int x, set s);
+void dump_set(const set s);
+
#endif