home · contact · privacy
MAJOR re-write. Split plomrogue into a server and a client. Re-wrote large parts
[plomrogue] / src / common / rexit.h
1 /* src/common/rexit.h
2  *
3  * Routines to exit the game orderly on error, with cleaning up and a somewhat
4  * informative message.
5  */
6
7 #ifndef REXIT_H
8 #define REXIT_H
9
10
11
12 /* Set "f" as the cleanup function to be called on exit. */
13 extern void set_cleanup_func(void (* f)());
14
15 /* If "err" == 0, do nothing. Else, clean up and exit with an error message that
16  * consists, first, of "msg" or (if "msg" is a NULL pointer) a generic "Details
17  * unknown", secondly of "err" as the "internal error code", and thirdly of
18  * errno if it is non-zero.
19  */
20 extern void exit_err(int err, char * msg);
21
22 /* Do exit_err() with "msg" as: "Trouble in ".parent." with ".child."." */
23 extern void exit_trouble(int err, char * parent, char * child);
24
25
26
27 #endif