summary refs log tree commit diff
path: root/parse.h
diff options
context:
space:
mode:
authorwrmr2024-11-02 15:10:41 -0500
committerwrmr2024-11-02 15:10:41 -0500
commit58214ec5f982c1b97aadce254c958a5f922c9724 (patch)
treeae64cb697531b0ee619350645e47adf186febfe7 /parse.h
parentdf1b0b23569e5244d5b9398802fec6435a995368 (diff)
split main.c in several places, began work on design doc
Diffstat (limited to 'parse.h')
-rw-r--r--parse.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/parse.h b/parse.h
new file mode 100644
index 0000000..1267b3c
--- /dev/null
+++ b/parse.h
@@ -0,0 +1,9 @@
+#ifndef PARSE_H
+#define PARSE_H
+
+#include <stddef.h>
+#include "doc.h"
+
+int parse_doc(enum doc_type doct, int (*line_get)(char **, size_t *));
+
+#endif