diff options
Diffstat (limited to 'src/common/file_util.h')
| -rw-r--r-- | src/common/file_util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/file_util.h b/src/common/file_util.h index cddcd1951..f9d91972f 100644 --- a/src/common/file_util.h +++ b/src/common/file_util.h | |||
| @@ -6,9 +6,9 @@ | |||
| 6 | 6 | ||
| 7 | #include <fstream> | 7 | #include <fstream> |
| 8 | #include <cstdio> | 8 | #include <cstdio> |
| 9 | #include <cstring> | ||
| 9 | #include <string> | 10 | #include <string> |
| 10 | #include <vector> | 11 | #include <vector> |
| 11 | #include <string.h> | ||
| 12 | 12 | ||
| 13 | #include "common/common.h" | 13 | #include "common/common.h" |
| 14 | #include "common/string_util.h" | 14 | #include "common/string_util.h" |
| @@ -128,8 +128,8 @@ std::string GetBundleDirectory(); | |||
| 128 | std::string &GetExeDirectory(); | 128 | std::string &GetExeDirectory(); |
| 129 | #endif | 129 | #endif |
| 130 | 130 | ||
| 131 | bool WriteStringToFile(bool text_file, const std::string &str, const char *filename); | 131 | size_t WriteStringToFile(bool text_file, const std::string &str, const char *filename); |
| 132 | bool ReadFileToString(bool text_file, const char *filename, std::string &str); | 132 | size_t ReadFileToString(bool text_file, const char *filename, std::string &str); |
| 133 | 133 | ||
| 134 | // simple wrapper for cstdlib file functions to | 134 | // simple wrapper for cstdlib file functions to |
| 135 | // hopefully will make error checking easier | 135 | // hopefully will make error checking easier |