| 389 | } |
| 390 | |
| 391 | std::vector<std::string> getFileTextLines(const char* file) { |
| 392 | return tokenize(getFileText(file), "\n", 0, false); |
| 393 | } |
| 394 | |
| 395 | unsigned int getFileLen(const char* file) { |
| 396 | if (!file) { |
nothing calls this directly
no test coverage detected