backup.h
Go to the documentation of this file.
1 /******************************************************************************
2  Copyright (c) 2008,2010 by Turku PET Centre
3 
4  backup.h
5 
6 
7  Modification history:
8  2008-07-14 Vesa Oikonen
9  First created.
10  2010-10-27 VO
11  Added function fileCopy().
12 
13 
14 ******************************************************************************/
15 #ifndef _BACKUP_H
16 #define _BACKUP_H
17 /*****************************************************************************/
18 extern int backupExistingFile(char *filename, char *backup_ext, char *status);
19 extern int fileCopy(char *filename1, char *filename2, char *status);
20 /*****************************************************************************/
21 #endif
22 
int fileCopy(char *filename1, char *filename2, char *status)
Definition: backup.c:101
int backupExistingFile(char *filename, char *backup_ext, char *status)
Definition: backup.c:50