| Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/coreutils/src/gnulib/lib/backup-rename.c |
| Source code | Switch to Preprocessed file |
| Line | Source | Count |
|---|---|---|
| 1 | /* Rename a file to a backup name, Emacs style. | - |
| 2 | - | |
| 3 | Copyright 2017-2018 Free Software Foundation, Inc. | - |
| 4 | - | |
| 5 | This program is free software: you can redistribute it and/or modify | - |
| 6 | it under the terms of the GNU General Public License as published by | - |
| 7 | the Free Software Foundation; either version 3 of the License, or | - |
| 8 | (at your option) any later version. | - |
| 9 | - | |
| 10 | This program is distributed in the hope that it will be useful, | - |
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | - |
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | - |
| 13 | GNU General Public License for more details. | - |
| 14 | - | |
| 15 | You should have received a copy of the GNU General Public License | - |
| 16 | along with this program. If not, see <https://www.gnu.org/licenses/>. */ | - |
| 17 | - | |
| 18 | #include <config.h> | - |
| 19 | - | |
| 20 | #include "backup-internal.h" | - |
| 21 | - | |
| 22 | /* Rename the existing file FILE to a backup name, allocated with | - |
| 23 | malloc, and return the backup name. On failure return a null | - |
| 24 | pointer, setting errno. Do not call this function if backup_type | - |
| 25 | == no_backups. */ | - |
| 26 | - | |
| 27 | char * | - |
| 28 | backup_file_rename (char const *file, enum backup_type backup_type) | - |
| 29 | { | - |
| 30 | return backupfile_internal (file, backup_type, true); executed 94 times by 3 tests: return backupfile_internal (file, backup_type, 1 );Executed by:
| 94 |
| 31 | } | - |
| Source code | Switch to Preprocessed file |