diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-06-10 23:02:40 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-06-10 23:02:40 +0200 |
commit | 849958d1ba3533c953fad46d4d41c0ec6e48316d (patch) | |
tree | 4002001e577cf348fe5df3fc4aa359bd21428a52 /src/shared/copy.h | |
parent | cde684a2932d3c8cbb9b3374aec27a1c20ba75fa (diff) |
tmpfiles: add new "C" line for copying files or directories
Diffstat (limited to 'src/shared/copy.h')
-rw-r--r-- | src/shared/copy.h | 25 |
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); |