File indexing completed on 2026-02-01 03:48:10

0001 #include "testhelper.h"
0002 #include <fstream>
0003 #include <string>
0004 
0005 void make_test_file(const char *filename)
0006 {
0007     std::ofstream(filename) << "test" << std::endl;
0008 }