all tasks
This commit is contained in:
parent
b83f433714
commit
68f8f3e56b
14735 changed files with 178959 additions and 0 deletions
29
Task/XML-DOM-serialization/C/xml-dom-serialization.c
Normal file
29
Task/XML-DOM-serialization/C/xml-dom-serialization.c
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <libxml/parser.h>
|
||||
#include <libxml/tree.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
const char **next;
|
||||
int a;
|
||||
FILE *outFile;
|
||||
|
||||
xmlDoc *doc = xmlNewDoc("1.0");
|
||||
xmlNode *root = xmlNewNode(NULL, "root");
|
||||
xmlDocSetRootElement(doc, root);
|
||||
|
||||
xmlNode *node = xmlNewNode(NULL, "element");
|
||||
xmlAddChild(node, xmlNewText("some text here"));
|
||||
xmlAddChild(root, node);
|
||||
|
||||
outFile = fopen("myfile.xml", "w");
|
||||
xmlElemDump(outFile, doc, root);
|
||||
fclose(outFile);
|
||||
|
||||
xmlFreeDoc(doc);
|
||||
xmlCleanupParser();
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue