summaryrefslogtreecommitdiff
path: root/obcl/main.c
blob: 9ae109a900337361fd9bdcfe8162275f29cb3e6b (plain)
1
2
3
4
5
6
7
8
9
#include "obcl.h"

int main()
{
    GList *lst = cl_parse("foo.conf");
    cl_tree_print(lst,0);
    cl_tree_free(lst);
    return 0;
}