cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
9 lines
160 B
C++
9 lines
160 B
C++
#include "testhelper.h"
|
|
#include <fstream>
|
|
#include <string>
|
|
|
|
void make_test_file(const char *filename)
|
|
{
|
|
std::ofstream(filename) << "test" << std::endl;
|
|
}
|