1 #ifndef FILES_H
2 #define FILES_H
3 
4 #include <string>
5 
6 bool FileToString(const std::string& file_name,
7                   std::string& contents);
8 
9 #endif
10