Skip to content

Instantly share code, notes, and snippets.

@slyshykO
Last active August 28, 2024 16:23
Show Gist options
  • Save slyshykO/fdb1d9c3a7c54b4b837ffe4f526c59f9 to your computer and use it in GitHub Desktop.
Save slyshykO/fdb1d9c3a7c54b4b837ffe4f526c59f9 to your computer and use it in GitHub Desktop.
RAII for file
#include <memory>
int main()
{
std::unique_ptr<std::FILE, decltype(&std::fclose)> f(std::fopen(name.c_str(), "r"), &std::fclose);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment