File indexing completed on 2024-04-14 03:50:21

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 }