| 163 | #endif |
| 164 | |
| 165 | static void zeros(std::ofstream & file, size_t n) { |
| 166 | char zero = 0; |
| 167 | for (size_t i = 0; i < n; ++i) { |
| 168 | file.write(&zero, 1); |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | LLAMA_ATTRIBUTE_FORMAT(1, 2) |
| 173 | static std::string format(const char * fmt, ...) { |
no test coverage detected