| 787 | /// Unused in other builds |
| 788 | #if defined(OS_LINUX) |
| 789 | String readLine(const String & path) |
| 790 | { |
| 791 | ReadBufferFromFile in(path); |
| 792 | String contents; |
| 793 | readStringUntilNewlineInto(contents, in); |
| 794 | return contents; |
| 795 | } |
| 796 | |
| 797 | int readNumber(const String & path) |
| 798 | { |
no test coverage detected