Rizin
unix-like reverse engineering framework and cli tools
main.h
Go to the documentation of this file.
1 //
5 //
6 // Author: Lasse Collin
7 //
8 // This file has been put into the public domain.
9 // You can do whatever you want with this file.
10 //
12 
15  E_SUCCESS = 0,
16  E_ERROR = 1,
17  E_WARNING = 2,
18 };
19 
20 
24 extern void set_exit_status(enum exit_status_type new_status);
25 
26 
30 extern void set_exit_no_warn(void);
void set_exit_no_warn(void)
Definition: main.c:51
void set_exit_status(enum exit_status_type new_status)
Definition: main.c:31
exit_status_type
Possible exit status values. These are the same as used by gzip and bzip2.
Definition: main.h:14
@ E_ERROR
Definition: main.h:16
@ E_WARNING
Definition: main.h:17
@ E_SUCCESS
Definition: main.h:15