]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/gcc/choose-temp.c
This commit was generated by cvs2svn to compensate for changes in r104977,
[FreeBSD/FreeBSD.git] / contrib / gcc / choose-temp.c
1 /* Utility to pick a temporary filename prefix.
2    Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
3
4 This file is part of the libiberty library.
5 Libiberty is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
9
10 Libiberty is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 Library General Public License for more details.
14
15 You should have received a copy of the GNU Library General Public
16 License along with libiberty; see the file COPYING.LIB.  If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.  */
19
20 /* $FreeBSD$ */
21
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25
26 #include <stdio.h>      /* May get P_tmpdir.  */
27 #ifdef HAVE_STDLIB_H
28 #include <stdlib.h>
29 #endif
30 #ifdef HAVE_STRING_H
31 #include <string.h>
32 #endif
33
34 #include "libiberty.h"
35 extern char *choose_tmpdir PARAMS ((void));
36
37 /* Name of temporary file.
38    mktemp requires 6 trailing X's.  */
39 #define TEMP_FILE "ccXXXXXX"
40 #define TEMP_FILE_LEN (sizeof(TEMP_FILE) - 1)
41
42 /*
43
44 @deftypefn Extension char* choose_temp_base (void)
45
46 Return a prefix for temporary file names or @code{NULL} if unable to
47 find one.  The current directory is chosen if all else fails so the
48 program is exited if a temporary directory can't be found (@code{mktemp}
49 fails).  The buffer for the result is obtained with @code{xmalloc}.
50
51 This function is provided for backwards compatability only.  Its use is
52 not recommended.
53
54 @end deftypefn
55
56 */
57
58 char *
59 choose_temp_base ()
60 {
61   const char *base = choose_tmpdir ();
62   char *temp_filename;
63   int len;
64
65   len = strlen (base);
66   temp_filename = xmalloc (len + TEMP_FILE_LEN + 1);
67   strcpy (temp_filename, base);
68   strcpy (temp_filename + len, TEMP_FILE);
69
70   mktemp (temp_filename);
71   if (strlen (temp_filename) == 0)
72     abort ();
73   return temp_filename;
74 }