...
The tmpfile_s() function is available on systems that support ISO/IEC TR 24731-1 (e.g., Microsoft Visual Studio 2005).
| Code Block | ||
|---|---|---|
| ||
...
if (tmpfile_s(&file_ptr)) {
/* Handle Error */
}
...
|
| Wiki Markup |
|---|
The {{tmpfile_s()}} function may not be compliant with \[[FI042-C|FI042-C. Temporary files must be removed before the program exits]\] for implementations where the temporary file is not removed if the program terminates abnormally. |
...