/* * call-seq: * content= * * Set the content for this Node */ static VALUE set_content(VALUE self, VALUE content) { xmlNodePtr node; Data_Get_Struct(self, xmlNode, node); xmlNodeSetContent(node, (xmlChar *)StringValuePtr(content)); return content; }