Add AST Hashing and Equals Functions
[satune.git] / src / AST / asthash.h
1 #ifndef ASTHASH_H
2 #define ASTHASH_H
3 #include "classlist.h"
4
5 uint hashBoolean(Boolean * boolean);
6 bool compareBoolean(Boolean *b1, Boolean *b2);
7
8 uint hashElement(Element *element);
9 bool compareElement(Element *e1, Element *e2);
10
11 #endif