Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Internal/textfile.h')
-rw-r--r--Source/Internal/textfile.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/Source/Internal/textfile.h b/Source/Internal/textfile.h
new file mode 100644
index 00000000..c3cbc2ab
--- /dev/null
+++ b/Source/Internal/textfile.h
@@ -0,0 +1,19 @@
+//-----------------------------------------------------------------------------
+// Name: textfile.h
+// Developer: Wolfire Games LLC
+// Description:
+// License: Read below
+//-----------------------------------------------------------------------------
+// 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
+//////////////////////////////////////////////////////////////////////
+#pragma once
+
+#include <string>
+
+void textFileRead(const std::string &filename, std::string *dst);
+int textFileWrite(char *fn, char *s);