aboutsummaryrefslogtreecommitdiff
path: root/inc/parse.h
diff options
context:
space:
mode:
authorMarvin Borner2022-12-13 15:43:39 +0100
committerMarvin Borner2022-12-13 15:44:59 +0100
commit2eecfca85b2b703318e57fcce33c864757b79c00 (patch)
tree5386231745ddb9b5d24281a889ef28dfa84f0b29 /inc/parse.h
Basic parsing
Diffstat (limited to 'inc/parse.h')
-rw-r--r--inc/parse.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/inc/parse.h b/inc/parse.h
new file mode 100644
index 0000000..cfd9102
--- /dev/null
+++ b/inc/parse.h
@@ -0,0 +1,8 @@
+#ifndef PARSE_H
+#define PARSE_H
+
+#include <term.h>
+
+struct term *parse(const char *term);
+
+#endif