File: message.c

package info (click to toggle)
shhmsg 1.4.1-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 156 kB
  • ctags: 79
  • sloc: ansic: 319; makefile: 138; sh: 12
file content (78 lines) | stat: -rw-r--r-- 2,524 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* $Id: message.c,v 1.6 2002/03/02 19:37:36 sverrehu Exp $ */
/*------------------------------------------------------------------------
 |  FILE            message.c
 |  MODULE OF       shhmsg - library for displaying messages.
 |
 |  DESCRIPTION     Routines for displaying messages unless "quiet mode"
 |                  is on.
 |
 |  WRITTEN BY      Sverre H. Huseby <shh@thathost.com>
 +----------------------------------------------------------------------*/

#include <stdio.h>
#include <stdarg.h>

#include "internal.h"
#include "shhmsg.h"

/*-----------------------------------------------------------------------+
|  PUBLIC DATA                                                           |
+-----------------------------------------------------------------------*/

int msgBeQuiet = 0;             /* supress everything from msgMessage() ? */

/*-----------------------------------------------------------------------+
|  PUBLIC FUNCTIONS                                                      |
+-----------------------------------------------------------------------*/

/*------------------------------------------------------------------------
 |
 |  NAME          msgSetQuiet
 |
 |  FUNCTION      Decide whether msgMessage() should display anything.
 |
 |  SYNOPSIS      #include "shhmsg.h"
 |                void msgSetQuiet(int onoff);
 |
 |  INPUT         onoff   1 to disable all messages, 0 to enable.
 |
 |  DESCRIPTION   Used in conjunction with the msgMessage() function.
 |                Note that changing the msgBeQuiet-variable directly
 |                is fully legal.
 */
void
msgSetQuiet(int onoff)
{
    msgBeQuiet = onoff;
}

/*------------------------------------------------------------------------
 |
 |  NAME          msgMessage
 |
 |  FUNCTION      Show given message unless quiet mode is on.
 |
 |  SYNOPSIS      #include "shhmsg.h"
 |                void msgMessage(const char *format, ...);
 |
 |  INPUT         format, ...
 |                        Arguments used as with printf().
 |
 |  DESCRIPTION   If msgSetQuiet(0) has been called, the given message is
 |                displayed on the _msgMessageStream. If msgSetQuiet(1)
 |                has been called, this function just returns.
 */
void
msgMessage(const char *format, ...)
{
    va_list ap;

    if (msgBeQuiet)
        return;
    fflush(stdout);
    if (_msgShowNameAlways)
	fprintf(GET_MESSAGE_STREAM, "%s: ", msgGetName());
    va_start(ap, format);
    vfprintf(GET_MESSAGE_STREAM, format, ap);
    va_end(ap);
}