1 /* Remove directory entries.
3 Copyright (C) 1998, 2000, 2002, 2003, 2004, 2005, 2006 Free
4 Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
27 /* If true, ignore nonexistent files. */
28 bool ignore_missing_files
;
30 /* If true, query the user about whether to remove each file. */
33 /* If true, do not traverse into (or remove) any directory that is
34 on a file system (i.e., that has a different device number) other
35 than that of the corresponding command line argument. Note that
36 even without this option, rm will fail in the end, due to its
37 probable inability to remove the mount point. But there, the
38 diagnostic comes too late -- after removing all contents. */
41 /* If true, recursively remove directories. */
44 /* Pointer to the device and inode numbers of `/', when --recursive
45 and preserving `/'. Otherwise NULL. */
46 struct dev_ino
*root_dev_ino
;
48 /* If nonzero, stdin is a tty. */
51 /* If true, display the name of each file removed. */
54 /* If true, treat the failure by the rm function to restore the
55 current working directory as a fatal error. I.e., if this field
56 is true and the rm function cannot restore cwd, it must exit with
57 a nonzero status. Some applications require that the rm function
58 restore cwd (e.g., mv) and some others do not (e.g., rm,
60 bool require_restore_cwd
;
65 /* These must be listed in order of increasing seriousness. */
72 # define VALID_STATUS(S) \
73 ((S) == RM_OK || (S) == RM_USER_DECLINED || (S) == RM_ERROR)
75 # define UPDATE_STATUS(S, New_value) \
78 if ((New_value) == RM_ERROR \
79 || ((New_value) == RM_USER_DECLINED && (S) == RM_OK)) \
84 enum RM_status
rm (size_t n_files
, char const *const *file
,
85 struct rm_options
const *x
);