aboutsummaryrefslogtreecommitdiff
path: root/inc/parse.h
diff options
context:
space:
mode:
authorMarvin Borner2024-01-17 00:59:12 +0100
committerMarvin Borner2024-01-17 01:10:36 +0100
commitb754e71ca502a5027ea3479eb3ea1a0ac28e5282 (patch)
treea7d4d9e45f289c6ba08abe56931f8b2f6dea39af /inc/parse.h
Initial commit
Diffstat (limited to 'inc/parse.h')
-rw-r--r--inc/parse.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/inc/parse.h b/inc/parse.h
new file mode 100644
index 0000000..2368199
--- /dev/null
+++ b/inc/parse.h
@@ -0,0 +1,20 @@
+// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
+// SPDX-License-Identifier: MIT
+
+#ifndef BLOC_PARSE_H
+#define BLOC_PARSE_H
+
+#include <stddef.h>
+
+#include <term.h>
+#include <spec.h>
+
+struct bloc_parsed {
+ size_t length;
+ struct term **entries;
+};
+
+struct bloc_parsed *parse_bloc(const void *bloc);
+void free_bloc(struct bloc_parsed *bloc);
+
+#endif