xmlFreeDoc(doc); return 1; } node = root->xmlChildrenNode; while (node != NULL) { if ((!xmlStrcmp(node->name, (const xmlChar *)"content"))) { char* content = XMLNodeGetContent(node); if (content != NULL) { printf("Content: s\n", content); free(content); } } node = ...
am a novice at using XML parsers but I have been given a task to fix something in a component I deal with at work. So any kind of reply or suggestion would be greatly appreciated. xmlNodeGetContent() which expects a node structure as shown below: <node> node_name </node> I wish t...