summaryrefslogtreecommitdiff
path: root/lib/copy-file.h
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2003-03-28 21:53:34 +0000
committerBruno Haible <bruno@clisp.org>2003-03-28 21:53:34 +0000
commitc845cbfc0d3b726794f95723a7a1105d98e8725d (patch)
tree8c376bb77fde0bbac44f8cf63574bfbb341a7023 /lib/copy-file.h
parent34713b4cb9a1da42ff6aa7ff96a374a12c96306e (diff)
downloadgnulib-c845cbfc0d3b726794f95723a7a1105d98e8725d.tar.gz
New module copy-file.
Diffstat (limited to 'lib/copy-file.h')
-rw-r--r--lib/copy-file.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/copy-file.h b/lib/copy-file.h
new file mode 100644
index 0000000000..3efda34b87
--- /dev/null
+++ b/lib/copy-file.h
@@ -0,0 +1,24 @@
+/* Copying of files.
+ Copyright (C) 2001-2003 Free Software Foundation, Inc.
+ Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+
+/* Copy a regular file: from src_filename to dest_filename.
+ The destination file is assumed to be a backup file.
+ Modification times, owner, group and access permissions are preserved as
+ far as possible.
+ Exit upon failure. */
+extern void copy_file_preserving (const char *src_filename, const char *dest_filename);