summaryrefslogtreecommitdiff
path: root/utils/themeeditor/main.c
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-05-25 22:24:08 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-05-25 22:24:08 +0000
commit0769fc5182b211dea276b5895987dfc4bc133995 (patch)
treeaa6c723a2281039637780278d06e168e5852c70e /utils/themeeditor/main.c
parentff9474e558a6108a3c9d42260043016ad11971ef (diff)
downloadrockbox-0769fc5182b211dea276b5895987dfc4bc133995.tar.gz
rockbox-0769fc5182b211dea276b5895987dfc4bc133995.zip
Fixed some memory leaks in the theme editor
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26292 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/main.c')
-rw-r--r--utils/themeeditor/main.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/utils/themeeditor/main.c b/utils/themeeditor/main.c
deleted file mode 100644
index 269cad7840..0000000000
--- a/utils/themeeditor/main.c
+++ /dev/null
@@ -1,16 +0,0 @@
1#include "skin_parser.h"
2#include "skin_debug.h"
3
4#include <stdlib.h>
5#include <stdio.h>
6
7int main(int argc, char* argv[])
8{
9 char* doc = "%Vd(U))\n\n%?bl(test,3,5,2,1)<param2|param3>";
10
11 struct skin_element* test = skin_parse(doc);
12
13 skin_debug_tree(test);
14
15 return 0;
16}