summaryrefslogtreecommitdiffstats
path: root/matchblox/common/textfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'matchblox/common/textfile.h')
-rw-r--r--matchblox/common/textfile.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/matchblox/common/textfile.h b/matchblox/common/textfile.h
new file mode 100644
index 0000000..1c30e53
--- /dev/null
+++ b/matchblox/common/textfile.h
@@ -0,0 +1,10 @@
+// textfile.h: interface for reading and writing text files
+// www.lighthouse3d.com
+//
+// You may use these functions freely.
+// they are provided as is, and no warranties, either implicit,
+// or explicit are given
+//////////////////////////////////////////////////////////////////////
+
+char *textFileRead(char *fn);
+int textFileWrite(char *fn, char *s);