chiark / gitweb /
Merge branch '2.4.x' into 2.5.x
[catacomb] / pub / keycheck-report.c
1 /* -*-c-*-
2  *
3  * A standard reporter function
4  *
5  * (c) 2001 Straylight/Edgeware
6  */
7
8 /*----- Licensing notice --------------------------------------------------*
9  *
10  * This file is part of Catacomb.
11  *
12  * Catacomb is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU Library General Public License as
14  * published by the Free Software Foundation; either version 2 of the
15  * License, or (at your option) any later version.
16  *
17  * Catacomb is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU Library General Public License for more details.
21  *
22  * You should have received a copy of the GNU Library General Public
23  * License along with Catacomb; if not, write to the Free
24  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25  * MA 02111-1307, USA.
26  */
27
28 /*----- Header files ------------------------------------------------------*/
29
30 #include <stdio.h>
31
32 #include "keycheck.h"
33
34 /*----- Main code ---------------------------------------------------------*/
35
36 /* --- @keycheck_stdreport@ --- *
37  *
38  * Arguments:   @unsigned sev@ = problem severity
39  *              @const char *msg@ = message to report
40  *              @void *p@ = an uninteresting pointer
41  *
42  * Returns:     Zero.
43  *
44  * Use:         Reports a message to stderr.
45  */
46
47 int keycheck_stdreport(unsigned sev, const char *msg, void *p)
48 {
49   static const char *const sevtab[] = {
50     "informational", "warning", "error"
51   };
52   keycheck_reportctx *r = p;
53   if (r && sev < r->sev)
54     return (0);
55   fprintf(r ? r->fp : stderr, "keycheck: %s: %s\n", sevtab[sev], msg);
56   return (0);
57 }
58
59 /*----- that's all, folks -------------------------------------------------*/