]> git.scottworley.com Git - overonion/blame - temp_file.h
--make_INSECURE_key to allow fast tests
[overonion] / temp_file.h
CommitLineData
2377b838
SW
1#ifndef _OVERONION_TEMP_FILE_H
2#define _OVERONION_TEMP_FILE_H
3
4#include <stdio.h>
5
6/* Create a temporary file in $TMPDIR, or /tmp if TMPDIR is not set.
7 * Caller must free temp_filename and fclose temp_file. Succeeds or terminates
8 * the process. */
9void make_temporary_file(char** temp_filename, FILE** temp_file);
10
11#endif /* _OVERONION_TEMP_FILE_H */