summaryrefslogtreecommitdiff
path: root/src/utils/namespace.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/namespace.h')
-rw-r--r--src/utils/namespace.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/utils/namespace.h b/src/utils/namespace.h
index ec69035..900c9ee 100644
--- a/src/utils/namespace.h
+++ b/src/utils/namespace.h
@@ -14,6 +14,7 @@
struct dom_document;
struct dom_string;
+
/* Initialise the namespace component */
dom_exception _dom_namespace_initialise(dom_alloc alloc, void *pw);
@@ -28,5 +29,11 @@ dom_exception _dom_namespace_validate_qname(struct dom_string *qname,
dom_exception _dom_namespace_split_qname(struct dom_string *qname,
struct dom_string **prefix, struct dom_string **localname);
+/* Get the XML prefix dom_string */
+struct dom_string *_dom_namespace_get_xml_prefix(void);
+
+/* Get the XMLNS prefix dom_string */
+struct dom_string *_dom_namespace_get_xmlns_prefix(void);
+
#endif