Changed function name to be consistent with header

This commit is contained in:
adrian17 2013-09-28 16:30:55 +02:00
parent 7df1ef32ce
commit 74fd618e39

View File

@ -99,7 +99,7 @@ uint64_t GetSize(FILE *f)
return size;
}
bool ReadFileToString(bool text_file, const char *filename, std::string &str)
bool readFileToString(bool text_file, const char *filename, std::string &str)
{
FILE *f = openCFile(filename, text_file ? "r" : "rb");
if (!f)