Skip to content

Instantly share code, notes, and snippets.

@mrowrpurr
Created January 3, 2023 04:07
Show Gist options
  • Save mrowrpurr/8356bae889ae4155f58679e133cafbbe to your computer and use it in GitHub Desktop.
Save mrowrpurr/8356bae889ae4155f58679e133cafbbe to your computer and use it in GitHub Desktop.
auto ReadFile(std::filesystem::path path) {
auto ifs = std::ifstream(path);
return std::string(std::istreambuf_iterator<char>{ifs}, {});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment