]> icculus.org git repositories - dana/openbox.git/blob - obcl/main.c
beginning of obcl. the parser works with semicolons after statements
[dana/openbox.git] / obcl / main.c
1 #include "obcl.h"
2
3 int main()
4 {
5     GList *lst = cl_parse("foo.conf");
6     cl_print_tree(lst,0);
7     return 0;
8 }