We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
POSIX C library provides FILE *tmpfile(void) function with a following contract
FILE *tmpfile(void)
The file will be automatically deleted when it is closed or the program terminates.
This implementation automatically deletes the file when it is closed. Temporary file deletion on program termination would be useful too.
The text was updated successfully, but these errors were encountered:
[README] Link to issue #1
a5893d9
Fixed in cecf376
Sorry, something went wrong.
No branches or pull requests
POSIX C library provides
FILE *tmpfile(void)
function with a following contractThis implementation automatically deletes the file when it is closed.
Temporary file deletion on program termination would be useful too.
The text was updated successfully, but these errors were encountered: