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

/* m_backup.c - construct a backup file */

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


char   *m_backup (file)
register char   *file;
{
    register char  *cp;
    static char buffer[BUFSIZ];

    if ((cp = r1bindex (file, '/')) == file)
	(void) sprintf (buffer, "%s%s", SBACKUP, cp);
    else
	(void) sprintf (buffer, "%.*s%s%s", cp - file, file, SBACKUP, cp);
    (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.