aboutsummaryrefslogtreecommitdiff
path: root/read.h
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2020-05-24 01:36:32 -0400
committerHolden Rohrer <hr@hrhr.dev>2020-05-24 01:36:48 -0400
commit3263fcbb58566fc1fe1ec3891fccd858cb4e6894 (patch)
tree6cc6d1c1e9d4a5ae021e7e20d0ff2c90da1627b2 /read.h
parentb9ecb91843036216323d66896e01be7a79e6f362 (diff)
added the framework for reading
Diffstat (limited to 'read.h')
-rw-r--r--read.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/read.h b/read.h
new file mode 100644
index 0000000..c01d4e6
--- /dev/null
+++ b/read.h
@@ -0,0 +1,9 @@
+#ifndef __READ_H__
+#define __READ_H__
+
+#include "strbst.h"
+#include "nodelink.h"
+
+node* readfile(char* name); // returns a root node with all as children
+
+#endif