diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/doer.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/doer.h b/src/include/doer.h index f349749..f527114 100644 --- a/src/include/doer.h +++ b/src/include/doer.h @@ -9,7 +9,13 @@ typedef struct DOER { tree_t* tree; } doer_t; +/* Creates a new parser. */ doer_t* doer_init(tree_t* tree); + +/* + Destroys a doer. + - Does not free the `tree`. +*/ void doer_destroy(doer_t* doer); void doer_do_blin_print(char* s); |