wibble
[apps/madmutt.git] / lib-sys / exit.c
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2006 Pierre Habouzit
18  */
19 /*
20  * Copyright notice from original mutt:
21  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
22  * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
23  *
24  * This file is part of mutt-ng, see http://www.muttng.org/.
25  * It's licensed under the GNU General Public License,
26  * please see the file GPL in the top level source directory.
27  */
28
29 #include <lib-lib/lib-lib.h>
30
31 #ifdef HAVE_SYSEXITS_H
32 #include <sysexits.h>
33 #else /* Make sure EX_OK is defined <philiph@pobox.com> */
34 #define EX_OK 0
35 #endif
36
37
38 #include "exit.h"
39
40 static const struct {
41     int v;
42     const char *str;
43 } sysexits_h[] = {
44 #ifdef EX_USAGE
45     { 0xff & EX_USAGE, "Bad usage." },
46 #endif
47 #ifdef EX_DATAERR
48     { 0xff & EX_DATAERR, "Data format error." },
49 #endif
50 #ifdef EX_NOINPUT
51     { 0xff & EX_NOINPUT, "Cannot open input." },
52 #endif
53 #ifdef EX_NOUSER
54     { 0xff & EX_NOUSER, "User unknown." },
55 #endif
56 #ifdef EX_NOHOST
57     { 0xff & EX_NOHOST, "Host unknown." },
58 #endif
59 #ifdef EX_UNAVAILABLE
60     { 0xff & EX_UNAVAILABLE, "Service unavailable." },
61 #endif
62 #ifdef EX_SOFTWARE
63     { 0xff & EX_SOFTWARE, "Internal error." },
64 #endif
65 #ifdef EX_OSERR
66     { 0xff & EX_OSERR, "Operating system error." },
67 #endif
68 #ifdef EX_OSFILE
69     { 0xff & EX_OSFILE, "System file missing." },
70 #endif
71 #ifdef EX_CANTCREAT
72     { 0xff & EX_CANTCREAT, "Can't create output." },
73 #endif
74 #ifdef EX_IOERR
75     { 0xff & EX_IOERR, "I/O error." },
76 #endif
77 #ifdef EX_TEMPFAIL
78     { 0xff & EX_TEMPFAIL, "Deferred." },
79 #endif
80 #ifdef EX_PROTOCOL
81     { 0xff & EX_PROTOCOL, "Remote protocol error." },
82 #endif
83 #ifdef EX_NOPERM
84     { 0xff & EX_NOPERM, "Insufficient permission." },
85 #endif
86 #ifdef EX_CONFIG
87     { 0xff & EX_NOPERM, "Local configuration error." },
88 #endif
89     { S_ERR, "Exec error." },
90 };
91
92 const char *m_strsysexit(int e)
93 {
94     int i;
95
96     for (i = 0; countof(sysexits_h); i++) {
97         if (e == sysexits_h[i].v)
98             return sysexits_h[i].str;
99     }
100
101     return "";
102 }