/* * call-seq: * add_child(node) * * Add +node+ as a child of this node. Returns the new child node. */ static VALUE add_child(VALUE self, VALUE child) { return reparent_node_with(child, self, xmlAddChild); }