003 File Manager
Current Path:
/usr/src/contrib/xz/src/xz
usr
/
src
/
contrib
/
xz
/
src
/
xz
/
📁
..
📄
args.c
(17.51 KB)
📄
args.h
(1.11 KB)
📄
coder.c
(25.4 KB)
📄
coder.h
(2.07 KB)
📄
file_io.c
(35.48 KB)
📄
file_io.h
(5.4 KB)
📄
hardware.c
(5.05 KB)
📄
hardware.h
(1.45 KB)
📄
list.c
(33.21 KB)
📄
list.h
(575 B)
📄
main.c
(9.34 KB)
📄
main.h
(972 B)
📄
message.c
(35.76 KB)
📄
message.h
(5.4 KB)
📄
mytime.c
(1.9 KB)
📄
mytime.h
(1.39 KB)
📄
options.c
(7.53 KB)
📄
options.h
(977 B)
📄
private.h
(1.31 KB)
📄
signals.c
(4.83 KB)
📄
signals.h
(1.44 KB)
📄
suffix.c
(10.12 KB)
📄
suffix.h
(1.08 KB)
📄
util.c
(6.98 KB)
📄
util.h
(4.35 KB)
📄
xz.1
(63.49 KB)
Editing: main.h
/////////////////////////////////////////////////////////////////////////////// // /// \file main.h /// \brief Miscellaneous declarations // // Author: Lasse Collin // // This file has been put into the public domain. // You can do whatever you want with this file. // /////////////////////////////////////////////////////////////////////////////// /// Possible exit status values. These are the same as used by gzip and bzip2. enum exit_status_type { E_SUCCESS = 0, E_ERROR = 1, E_WARNING = 2, }; /// Sets the exit status after a warning or error has occurred. If new_status /// is E_WARNING and the old exit status was already E_ERROR, the exit /// status is not changed. extern void set_exit_status(enum exit_status_type new_status); /// Use E_SUCCESS instead of E_WARNING if something worth a warning occurs /// but nothing worth an error has occurred. This is called when --no-warn /// is specified. extern void set_exit_no_warn(void);
Upload File
Create Folder