Implementing client interfaces regarding Sets
[satune.git] / src / mutableset.h
1 #ifndef MUTABLESET_H
2 #define MUTABLESET_H
3 #include "set.h"
4
5 MutableSet* allocMutableSet(VarType type);
6 void addElementMSet(MutableSet * set, uint64_t element);
7 #endif