| 41 | |
| 42 | std::vector<std::string> getFileTextLines(const char* file); |
| 43 | inline std::vector<std::string> getFileTextLines(const std::string& file) {return getFileTextLines(file.c_str());} |
| 44 | |
| 45 | unsigned int getFileLen(const char* file); |
| 46 | inline unsigned int getFileLen(std::string& file) {return getFileLen(file.c_str());} |
no test coverage detected