summaryrefslogtreecommitdiffstats
path: root/utils/themeeditor/main.c
blob: 269cad78402115f2b44419dd8a92ed8d8ba0d449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "skin_parser.h"
#include "skin_debug.h"

#include <stdlib.h>
#include <stdio.h>

int main(int argc, char* argv[])
{
    char* doc = "%Vd(U))\n\n%?bl(test,3,5,2,1)<param2|param3>";

    struct skin_element* test = skin_parse(doc);

    skin_debug_tree(test);

    return 0;
}