chiark / gitweb /
quis: remove the leading `-' from the name, in case we're invoked as a
[mLib] / report.h
1 /* -*-c-*-
2  *
3  * $Id: report.h,v 1.1 1998/06/17 23:44:42 mdw Exp $
4  *
5  * Reporting errors and things
6  *
7  * (c) 1998 Straylight/Edgeware
8  */
9
10 /*----- Licensing notice --------------------------------------------------*
11  *
12  * This file is part of the mLib utilities library.
13  *
14  * mLib is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 2 of the License, or
17  * (at your option) any later version.
18  *
19  * mLib is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with mLib; if not, write to the Free Software Foundation,
26  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27  */
28
29 /*----- Revision history --------------------------------------------------*
30  *
31  * $Log: report.h,v $
32  * Revision 1.1  1998/06/17 23:44:42  mdw
33  * Initial revision
34  *
35  */
36
37 #ifndef REPORT_H
38 #define REPORT_H
39
40 #ifdef __cplusplus
41   extern "C" {
42 #endif
43
44 /*----- Functions provided ------------------------------------------------*/
45
46 /* --- @moan@ --- *
47  *
48  * Arguments:   @const char *f@ = a @printf@-style format string
49  *              @...@ = other arguments
50  *
51  * Returns:     ---
52  *
53  * Use:         Reports an error.
54  */
55
56 extern void moan(const char *f, ...);
57
58 /* --- @die@ --- *
59  *
60  * Arguments:   @int status@ = exit status to return
61  *              @const char *f@ = a @printf@-style format string
62  *              @...@ = other arguments
63  *
64  * Returns:     Never.
65  *
66  * Use:         Reports an error and exits.  Like @moan@ above, only more
67  *              permanent.
68  */
69
70 extern void die(int status, const char *f, ...);
71
72 /*----- That's all, folks -------------------------------------------------*/
73
74 #ifdef __cplusplus
75   }
76 #endif
77
78 #endif