update dev300-m57
[ooovba.git] / dmake / unix / bsdarm32 / tempnam.c
blob23e0125d7b10f519283f3fa54682e26cbf30adf3
1 /* RCS $Id: tempnam.c,v 1.1.1.1 2000-09-22 15:33:34 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.
17 --
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
45 char *
46 tempnam(dir, prefix)
47 const char *dir; /* use this directory please (if non-NULL) */
48 const char *prefix; /* use this (if non-NULL) as filename prefix */
50 register char *p, *q, *tmpdir;
51 int tl=0, dl=0, pl;
53 pl = strlen(P_tmpdir);
55 if( (tmpdir = getenv("TMPDIR")) != NULL ) tl = strlen(tmpdir);
56 if( dir != NULL ) dl = strlen(dir);
58 if( (p = malloc((unsigned)(max(max(dl,tl),pl)+16))) == NULL )
59 return(NULL);
61 *p = '\0';
63 if( (tl == 0) || (access( cpdir(p, tmpdir), 3) != 0) )
64 if( (dl == 0) || (access( cpdir(p, dir), 3) != 0) )
65 if( access( cpdir(p, P_tmpdir), 3) != 0 )
66 if( access( cpdir(p, "/tmp"), 3) != 0 )
67 return(NULL);
69 (void) strcat(p, "/");
70 if(prefix)
72 *(p+strlen(p)+5) = '\0';
73 (void)strncat(p, prefix, 5);
76 (void)strcat(p, seed);
77 (void)strcat(p, "XXXXXX");
79 q = seed;
80 while(*q == 'Z') *q++ = 'A';
81 ++*q;
83 if(*mktemp(p) == '\0') return(NULL);
84 return(p);
90 static char *
91 cpdir(buf, str)
92 char *buf;
93 char *str;
95 char *p;
97 if(str != NULL)
99 (void) strcpy(buf, str);
100 p = buf - 1 + strlen(buf);
101 if(*p == '/') *p = '\0';
104 return(buf);