summaryrefslogtreecommitdiff
path: root/misc.h
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-06-18 09:38:10 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-06-18 09:38:10 -0400
commit8c7006c3ce636e7ba4127e5567350c334c3ea5e1 (patch)
tree4a05f4df6cea2a8d4cf43e130dfeee23ea9ec3b1 /misc.h
parentdc9f35b35a7d7fd6e831f3ee287d1e7ad96e684e (diff)
Move all miscellaneous functions from `config.c` into
`misc.c`.
Diffstat (limited to 'misc.h')
-rw-r--r--misc.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/misc.h b/misc.h
new file mode 100644
index 0000000..9216250
--- /dev/null
+++ b/misc.h
@@ -0,0 +1,7 @@
+#ifndef MISC_H
+#define MISC_H
+
+extern char *read_file(const char *filename, long *size);
+extern char *get_line(char **str);
+extern char *make_str(const char *str);
+#endif