match_strval > try_val_to_str
[wireshark-wip.git] / wsutil / tempfile.h
blob4f9492ed8746e85969c6fa224f06c5897c0151b0
1 /* tempfile.h
2 * Declarations of routines to create temporary files
4 * $Id$
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #ifndef __TEMPFILE_H__
26 #define __TEMPFILE_H__
28 #include "ws_symbol_export.h"
30 #ifdef __cplusplus
31 extern "C" {
32 #endif /* __cplusplus */
34 /** @file
35 * Convenience function for temporary file creation.
39 /**
40 * Create a tempfile with the given prefix (e.g. "wireshark"). The path
41 * is created using g_get_tmp_dir and mkstemp.
43 * @param namebuf[in,out] If not NULL, receives the full path of the temp file.
44 * Must NOT be freed.
45 * @param pfx[in] A prefix for the temporary file.
46 * @return The file descriptor of the new tempfile, from mkstemp().
48 WS_DLL_PUBLIC int create_tempfile(char **namebuf, const char *pfx);
50 /**
51 * Create a directory with the given prefix (e.g. "wireshark"). The path
52 * is created using g_get_tmp_dir and mkdtemp.
54 * @param namebuf If not NULL, receives the full path of the temp directory.
55 * Must NOT be freed.
56 * @param pfx A prefix for the temporary directory.
57 * @return The temporary directory path on success, or NULL on failure.
58 * Must NOT be freed.
60 WS_DLL_PUBLIC const char *create_tempdir(char **namebuf, const char *pfx);
62 #ifdef __cplusplus
64 #endif /* __cplusplus */
66 #endif /* __TEMPFILE_H__ */