1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00

- tree.[ch]: fixing bug #54446, by cleaning some bugs in the

attributes handling and #54433 by adding xmlUnsetProp()
  and xmlUnsetNsProp()
Daniel
This commit is contained in:
Daniel Veillard
2001-05-11 17:41:21 +00:00
parent 0a2a163d2e
commit 75bea5480e
4 changed files with 87 additions and 3 deletions

View File

@@ -584,6 +584,8 @@ xmlAttrPtr xmlSetProp (xmlNodePtr node,
const xmlChar *value);
xmlChar * xmlGetProp (xmlNodePtr node,
const xmlChar *name);
int xmlUnsetProp (xmlNodePtr node,
const xmlChar *name);
xmlAttrPtr xmlHasProp (xmlNodePtr node,
const xmlChar *name);
xmlAttrPtr xmlSetNsProp (xmlNodePtr node,
@@ -593,6 +595,9 @@ xmlAttrPtr xmlSetNsProp (xmlNodePtr node,
xmlChar * xmlGetNsProp (xmlNodePtr node,
const xmlChar *name,
const xmlChar *nameSpace);
int xmlUnsetNsProp (xmlNodePtr node,
xmlNsPtr ns,
const xmlChar *name);
xmlNodePtr xmlStringGetNodeList (xmlDocPtr doc,
const xmlChar *value);
xmlNodePtr xmlStringLenGetNodeList (xmlDocPtr doc,