Version 3.6.0.4, tag libreoffice-3.6.0.4
[LibreOffice.git] / dmake / unix / solaris / tempnam.c
blob56f23fbe21d47e3639d6831ec342c6a110d9250a
1 /* RCS $Id: tempnam.c,v 1.1.1.1 2000-09-22 15:33:35 hr Exp $
2 --
3 -- SYNOPSIS
4 -- tempnam
5 --
6 -- DESCRIPTION
7 -- temp file name generation routines.
8 --
9 -- AUTHOR
10 -- Dennis Vadura, dvadura@dmake.wticorp.com
12 -- WWW
13 -- http://dmake.wticorp.com/
15 -- COPYRIGHT
16 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
18 -- This program is NOT free software; you can redistribute it and/or
19 -- modify it under the terms of the Software License Agreement Provided
20 -- in the file <distribution-root>/readme/license.txt.
22 -- LOG
23 -- Use cvs log to obtain detailed change logs.
26 /*LINTLIBRARY*/
27 #include <stdio.h>
28 #include <string.h>
29 #include <stdlib.h>
31 #define max(A,B) (((A)<(B))?(B):(A))
33 extern char *mktemp();
34 extern int access();
36 static char *cpdir();
37 static char seed[4]="AAA";
39 /* BSD stdio.h doesn't define P_tmpdir, so let's do it here */
40 #ifndef P_tmpdir
41 static char *P_tmpdir = "/tmp";
42 #endif
44 char *
45 tempnam(dir, prefix)
46 const char *dir; /* use this directory please (if non-NULL) */
47 const char *prefix; /* use this (if non-NULL) as filename prefix */
49 register char *p, *q, *tmpdir;
50 int tl=0, dl=0, pl;
52 pl = strlen(P_tmpdir);
54 if( (tmpdir = getenv("TMPDIR")) != NULL ) tl = strlen(tmpdir);
55 if( dir != NULL ) dl = strlen(dir);
57 if( (p = malloc((unsigned)(max(max(dl,tl),pl)+16))) == NULL )
58 return(NULL);
60 *p = '\0';
62 if( (tl == 0) || (access( cpdir(p, tmpdir), 3) != 0) )
63 if( (dl == 0) || (access( cpdir(p, dir), 3) != 0) )
64 if( access( cpdir(p, P_tmpdir), 3) != 0 )
65 if( access( cpdir(p, "/tmp"), 3) != 0 )
66 return(NULL);
68 (void) strcat(p, "/");
69 if(prefix)
71 *(p+strlen(p)+5) = '\0';
72 (void)strncat(p, prefix, 5);
75 (void)strcat(p, seed);
76 (void)strcat(p, "XXXXXX");
78 q = seed;
79 while(*q == 'Z') *q++ = 'A';
80 ++*q;
82 if(*mktemp(p) == '\0') return(NULL);
83 return(p);
88 static char *
89 cpdir(buf, str)
90 char *buf;
91 char *str;
93 char *p;
95 if(str != NULL)
97 (void) strcpy(buf, str);
98 p = buf - 1 + strlen(buf);
99 if(*p == '/') *p = '\0';
102 return(buf);