summaryrefslogtreecommitdiff
path: root/obcl/obcl.h
diff options
context:
space:
mode:
Diffstat (limited to 'obcl/obcl.h')
-rw-r--r--obcl/obcl.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/obcl/obcl.h b/obcl/obcl.h
index a940e89d..1002964d 100644
--- a/obcl/obcl.h
+++ b/obcl/obcl.h
@@ -28,11 +28,12 @@ typedef struct CLNode {
} CLNode;
-void free_cl_tree(GList *tree);
GList *cl_parse(gchar *file);
GList *cl_parse_fh(FILE *file);
-void cl_print_tree(GList *tree, int depth);
-GList *parse_file(FILE *fh);
+void cl_tree_free(GList *tree);
+void cl_tree_print(GList *tree, int depth);
+
+void cl_tree_process(GList *tree);
#endif /* __obcl_h */