~ubuntu-branches/ubuntu/wily/opencollada/wily-proposed

« back to all changes in this revision

Viewing changes to Externals/LibXML/doc/examples/io2.c

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2015-05-14 17:23:27 UTC
  • Revision ID: package-import@ubuntu.com-20150514172327-f862u8envms01fra
Tags: upstream-0.1.0~20140703.ddf8f47+dfsg1
ImportĀ upstreamĀ versionĀ 0.1.0~20140703.ddf8f47+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * section: InputOutput
 
3
 * synopsis: Output to char buffer
 
4
 * purpose: Demonstrate the use of xmlDocDumpMemory
 
5
 *          to output document to a character buffer
 
6
 * usage: io2
 
7
 * test: io2 > io2.tmp ; diff io2.tmp io2.res ; rm -f io2.tmp
 
8
 * author: John Fleck
 
9
 * copy: see Copyright for the status of this software.
 
10
 */
 
11
 
 
12
#include <libxml/parser.h>
 
13
 
 
14
#if defined(LIBXML_TREE_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
 
15
int
 
16
main(void)
 
17
{
 
18
 
 
19
    xmlNodePtr n;
 
20
    xmlDocPtr doc;
 
21
    xmlChar *xmlbuff;
 
22
    int buffersize;
 
23
 
 
24
    /*
 
25
     * Create the document.
 
26
     */
 
27
    doc = xmlNewDoc(BAD_CAST "1.0");
 
28
    n = xmlNewNode(NULL, BAD_CAST "root");
 
29
    xmlNodeSetContent(n, BAD_CAST "content");
 
30
    xmlDocSetRootElement(doc, n);
 
31
 
 
32
    /*
 
33
     * Dump the document to a buffer and print it
 
34
     * for demonstration purposes.
 
35
     */
 
36
    xmlDocDumpFormatMemory(doc, &xmlbuff, &buffersize, 1);
 
37
    printf((char *) xmlbuff);
 
38
 
 
39
    /*
 
40
     * Free associated memory.
 
41
     */
 
42
    xmlFree(xmlbuff);
 
43
    xmlFreeDoc(doc);
 
44
 
 
45
    return (0);
 
46
 
 
47
}
 
48
#else
 
49
#include <stdio.h>
 
50
 
 
51
int
 
52
main(void)
 
53
{
 
54
    fprintf(stderr,
 
55
            "library not configured with tree and output support\n");
 
56
    return (1);
 
57
}
 
58
#endif