chiark / gitweb /
Declare and document @conn_fd@.
[mLib] / report.h
CommitLineData
0875b58f 1/* -*-c-*-
2 *
c6e0eaf0 3 * $Id: report.h,v 1.4 1999/12/10 23:42:04 mdw Exp $
0875b58f 4 *
5 * Reporting errors and things
6 *
7 * (c) 1998 Straylight/Edgeware
8 */
9
c846879c 10/*----- Licensing notice --------------------------------------------------*
0875b58f 11 *
12 * This file is part of the mLib utilities library.
13 *
14 * mLib is free software; you can redistribute it and/or modify
c846879c 15 * it under the terms of the GNU Library General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
18 *
0875b58f 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
c846879c 22 * GNU Library General Public License for more details.
23 *
24 * You should have received a copy of the GNU Library General Public
0bd98442 25 * License along with mLib; if not, write to the Free
26 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27 * MA 02111-1307, USA.
0875b58f 28 */
29
30/*----- Revision history --------------------------------------------------*
31 *
32 * $Log: report.h,v $
c6e0eaf0 33 * Revision 1.4 1999/12/10 23:42:04 mdw
34 * Change header file guard names.
35 *
0bd98442 36 * Revision 1.3 1999/05/06 19:51:35 mdw
37 * Reformatted the LGPL notice a little bit.
38 *
c846879c 39 * Revision 1.2 1999/05/05 18:50:31 mdw
40 * Change licensing conditions to LGPL.
41 *
42 * Revision 1.1.1.1 1998/06/17 23:44:42 mdw
43 * Initial version of mLib
0875b58f 44 *
45 */
46
c6e0eaf0 47#ifndef MLIB_REPORT_H
48#define MLIB_REPORT_H
0875b58f 49
50#ifdef __cplusplus
51 extern "C" {
52#endif
53
54/*----- Functions provided ------------------------------------------------*/
55
56/* --- @moan@ --- *
57 *
58 * Arguments: @const char *f@ = a @printf@-style format string
59 * @...@ = other arguments
60 *
61 * Returns: ---
62 *
63 * Use: Reports an error.
64 */
65
66extern void moan(const char *f, ...);
67
68/* --- @die@ --- *
69 *
70 * Arguments: @int status@ = exit status to return
71 * @const char *f@ = a @printf@-style format string
72 * @...@ = other arguments
73 *
74 * Returns: Never.
75 *
76 * Use: Reports an error and exits. Like @moan@ above, only more
77 * permanent.
78 */
79
80extern void die(int status, const char *f, ...);
81
82/*----- That's all, folks -------------------------------------------------*/
83
84#ifdef __cplusplus
85 }
86#endif
87
88#endif