summaryrefslogtreecommitdiff
path: root/src/core/element.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/element.h')
-rw-r--r--src/core/element.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/element.h b/src/core/element.h
index 5873396..c89ddc0 100644
--- a/src/core/element.h
+++ b/src/core/element.h
@@ -231,6 +231,11 @@ dom_exception _dom_element_copy(dom_node_internal *old,
_dom_element_copy
/* Helper functions*/
+dom_exception _dom_element_copy_internal(dom_element *old,
+ dom_element *new);
+#define dom_element_copy_internal(o, n) _dom_element_copy_internal( \
+ (dom_element *) (o), (dom_element *) (n))
+
dom_exception _dom_element_get_id(struct dom_element *ele, dom_string **id);
extern struct dom_element_vtable _dom_element_vtable;