view src/mxml-test.c @ 1519:c7fd27f6874e

merge
author Volker Grabsch <vog@notjusthosting.com>
date Sun, 19 Dec 2010 11:28:39 +0100
parents 5e1db3421f8e
children f653602a0500
line wrap: on
line source

/* This file is part of mingw-cross-env.       */
/* See doc/index.html for further information. */

#include <mxml.h>

int main(int argc, char *argv[])
{
    mxml_node_t *tree;

    (void)argc;
    (void)argv;

    tree = mxmlLoadString(NULL,
                          "<?xml version=\"1.0\"?>\n"
                          "<test/>\n",
                          MXML_TEXT_CALLBACK);

    mxmlDelete(tree);

    return 0;
}