diff src/mxml-test.c @ 1434:5e1db3421f8e

simple test program for package mxml
author Volker Grabsch <vog@notjusthosting.com>
date Sat, 27 Nov 2010 00:33:03 +0100
parents
children f653602a0500
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/mxml-test.c	Sat Nov 27 00:33:03 2010 +0100
@@ -0,0 +1,21 @@
+/* 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;
+}