summaryrefslogtreecommitdiff
path: root/src/shared/copy.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2014-06-10 23:02:40 +0200
committerLennart Poettering <lennart@poettering.net>2014-06-10 23:02:40 +0200
commit849958d1ba3533c953fad46d4d41c0ec6e48316d (patch)
tree4002001e577cf348fe5df3fc4aa359bd21428a52 /src/shared/copy.h
parentcde684a2932d3c8cbb9b3374aec27a1c20ba75fa (diff)
tmpfiles: add new "C" line for copying files or directories
Diffstat (limited to 'src/shared/copy.h')
-rw-r--r--src/shared/copy.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/shared/copy.h b/src/shared/copy.h
new file mode 100644
index 0000000000..5b569543ee
--- /dev/null
+++ b/src/shared/copy.h
@@ -0,0 +1,25 @@
+/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
+
+#pragma once
+
+/***
+ This file is part of systemd.
+
+ Copyright 2014 Lennart Poettering
+
+ systemd is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ systemd 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
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with systemd; If not, see <http://www.gnu.org/licenses/>.
+***/
+
+int copy_file(const char *from, const char *to, int flags, mode_t mode);
+int copy_tree(const char *from, const char *to);