diff options
| author | Marius Nita <marius@cs.pdx.edu> | 2003-04-14 06:04:49 +0000 |
|---|---|---|
| committer | Marius Nita <marius@cs.pdx.edu> | 2003-04-14 06:04:49 +0000 |
| commit | 7aae14e9b83242c2778e57c069fb8f299b8172f3 (patch) | |
| tree | 80892567a99c251b0ae957c51309645b6d27dc98 /obcl/main.c | |
| parent | 69854023a4f36deb80c7c3dee891acc48f8ae6da (diff) | |
beginning of obcl. the parser works with semicolons after statements
for now, there is much left to change and do.
Diffstat (limited to 'obcl/main.c')
| -rw-r--r-- | obcl/main.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/obcl/main.c b/obcl/main.c new file mode 100644 index 00000000..5fb83967 --- /dev/null +++ b/obcl/main.c @@ -0,0 +1,8 @@ +#include "obcl.h" + +int main() +{ + GList *lst = cl_parse("foo.conf"); + cl_print_tree(lst,0); + return 0; +} |
