예제 #1
0
void rxml_attr_mark(xmlAttrPtr xattr)
{
  if (xattr->_private == NULL)
  {
    rb_warning("XmlAttr is not bound! (%s:%d)", __FILE__, __LINE__);
    return;
  }

  rxml_node_mark_common((xmlNodePtr) xattr);
}
예제 #2
0
void rxml_node_mark(xmlNodePtr xnode)
{
  if (xnode == NULL)
    return;

  if (xnode->_private == NULL)
  {
    rb_warning("XmlNode is not bound! (%s:%d)", __FILE__, __LINE__);
    return;
  }

  rxml_node_mark_common(xnode);
}
예제 #3
0
void
rxml_attributes_mark(xmlNodePtr xnode) {
  rxml_node_mark_common(xnode);
}