Defines | |
#define | DOM_ELEMENT DOM_NODE |
Functions | |
DOM_ELEMENT * | domElementNew (const char *name) |
void | domElementDestroy (DOM_ELEMENT *element) |
void | domElementSetAttribute (DOM_ELEMENT *element, const char *name, const char *value) |
void | domElementUnsetAttribute (DOM_ELEMENT *element, const char *name) |
const char * | domElementGetAttribute (DOM_ELEMENT *element, const char *name) |
|
Defines a DOM_ELEMENT as a DOM_NODE. This gives us "inheritance" in C. |
|
Recursively destroys a DOM element.
|
|
Get the value associated with an attribute by its name.
|
|
Constructs a DOM element with the given name.
|
|
Sets an attribute on an element by its name.
|
|
Unsets an attribute on an element by its name.
|