]> git.cworth.org Git - tar/blob - lib/mkdtemp.c
Imported Upstream version 1.20
[tar] / lib / mkdtemp.c
1 /* Copyright (C) 1999, 2001-2003, 2006-2007 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Extracted from misc/mkdtemp.c.  */
18
19 #include <config.h>
20
21 /* Specification.  */
22 #include <stdlib.h>
23
24 #include "tempname.h"
25
26 /* Generate a unique temporary directory from TEMPLATE.
27    The last six characters of TEMPLATE must be "XXXXXX";
28    they are replaced with a string that makes the filename unique.
29    The directory is created, mode 700, and its name is returned.
30    (This function comes from OpenBSD.) */
31 char *
32 mkdtemp (char *template)
33 {
34   if (gen_tempname (template, GT_DIR))
35     return NULL;
36   else
37     return template;
38 }