File:  [CSRG BSD Unix] / 43BSDReno / contrib / mh / sbr / m_scratch.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Tue Apr 24 16:12:56 2018 UTC (8 years, 1 month ago) by root
Branches: MAIN, BSD
CVS tags: HEAD, BSD43reno
BSD 4.3reno

/* m_scratch.c - construct a scratch file */

#include "../h/mh.h"
#include <stdio.h>


char   *m_scratch (file, template)
register char  *file,
               *template;
{
    register char  *cp;
    static char buffer[BUFSIZ],
		tmpfil[BUFSIZ];

    (void) sprintf (tmpfil, "%sXXXXXX", template);
    (void) mktemp (tmpfil);
    if ((cp = r1bindex (file, '/')) == file)
	(void) strcpy (buffer, tmpfil);
    else
	(void) sprintf (buffer, "%.*s%s", cp - file, file, tmpfil);
    (void) unlink (buffer);

    return buffer;
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.