home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume34 / unpackmaps / part02 / fileinit.c < prev    next >
C/C++ Source or Header  |  1992-11-29  |  634b  |  27 lines

  1. /* Copyright 1992, Chris Lewis.  All Rights Reserved
  2.    Please see the README for the terms of the copyright.
  3.    1.1 92/06/10
  4.  */
  5.  
  6. #ifndef lint
  7. static char SCCSid[] = "@(#)fileinit.c 1.1 92/06/10 01:16:15";
  8. #endif
  9.  
  10. #include "unpack.h"
  11.  
  12. char *
  13. makepath(dir, file)
  14. char *dir, *file; {
  15.     register char *p = (char *) malloc(strlen(dir) + strlen(file) + 10);
  16.     char numbuf[10];
  17.     fatal(!p, "Can't allocate temporary file names");
  18.     (void) strcpy(p, dir);
  19.     (void) strcat(p, "/");
  20.     if (*file == '.') {
  21.     (void) sprintf(numbuf, "%d", (int) getpid());
  22.     (void) strcat(p, numbuf);
  23.     }
  24.     (void) strcat(p, file);
  25.     return(p);
  26. }
  27.