]> git.cworth.org Git - tar/blob - gnu/tempname.h
upstream: Fix extraction of device nodes.
[tar] / gnu / tempname.h
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* Create a temporary file or directory.
4
5    Copyright (C) 2006, 2009-2010 Free Software Foundation, Inc.
6
7    This program is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 /* header written by Eric Blake */
21
22 #ifndef GL_TEMPNAME_H
23 # define GL_TEMPNAME_H
24
25 # include <stdio.h>
26
27 # ifdef __GT_FILE
28 #  define GT_FILE     __GT_FILE
29 #  define GT_DIR      __GT_DIR
30 #  define GT_NOCREATE __GT_NOCREATE
31 # else
32 #  define GT_FILE     0
33 #  define GT_DIR      1
34 #  define GT_NOCREATE 2
35 # endif
36
37 /* Generate a temporary file name based on TMPL.  TMPL must match the
38    rules for mk[s]temp (i.e. end in "XXXXXX", possibly with a suffix).
39    The name constructed does not exist at the time of the call to
40    gen_tempname.  TMPL is overwritten with the result.
41
42    KIND may be one of:
43    GT_NOCREATE:         simply verify that the name does not exist
44                         at the time of the call.
45    GT_FILE:             create a large file using open(O_CREAT|O_EXCL)
46                         and return a read-write fd.  The file is mode 0600.
47    GT_DIR:              create a directory, which will be mode 0700.
48
49    We use a clever algorithm to get hard-to-predict names. */
50 extern int gen_tempname (char *tmpl, int suffixlen, int flags, int kind);
51
52 #endif /* GL_TEMPNAME_H */