1 #include "elementencoding.h"
3 ElementEncoding * allocElementEncoding(ElementEncodingType type, Element *element) {
4 ElementEncoding * this=(ElementEncoding *)ourmalloc(sizeof(ElementEncoding));
8 this->encodingArray=NULL;
13 void deleteElementEncoding(ElementEncoding *this) {
14 if (this->variables!=NULL)
15 ourfree(this->variables);
16 if (this->encodingArray!=NULL)
17 ourfree(this->encodingArray);