aboutsummaryrefslogtreecommitdiff
path: root/inc/free.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/free.h')
-rw-r--r--inc/free.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/inc/free.h b/inc/free.h
new file mode 100644
index 0000000..34c82c7
--- /dev/null
+++ b/inc/free.h
@@ -0,0 +1,13 @@
+// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
+// SPDX-License-Identifier: MIT
+
+#ifndef BLOC_FREE_H
+#define BLOC_FREE_H
+
+#include <parse.h>
+#include <term.h>
+
+void free_term(struct term *term);
+void free_bloc(struct bloc_parsed *bloc);
+
+#endif