projects
/
satune.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' of ssh://plrg.eecs.uci.edu/home/git/constraint_compiler
[satune.git]
/
src
/
AST
/
element.c
1
#include "element.h"
2
3
Element *allocElement(Set * s) {
4
Element * tmp=(Element *)ourmalloc(sizeof(Element));
5
tmp->set=s;
6
return tmp;
7
}
8
9
void deleteElement(Element *this) {
10
ourfree(this);
11
}