c_-_c_files:write_string_to_file
Table of Contents
C - C++ Files - Write string to file
write_string_to_file.hpp
#pragma once #include <string> void write_string_to_file(std::string filename, std::string content);
write_string_to_file.cpp
#include "write_string_to_file.hpp" #include <sstream> #include <fstream> void write_string_to_file(std::string filename, std::string content) { std::ofstream(filename) << content; }
References
c_-_c_files/write_string_to_file.txt · Last modified: 2021/04/28 09:34 by peter