Dillo
v3.2.0-10-gc247d95a
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Functions
a
b
c
d
f
g
i
k
m
n
p
r
s
t
u
w
Variables
Typedefs
Enumerations
Enumerator
b
c
d
f
h
i
l
m
n
o
p
r
s
t
v
w
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Enumerator
a
b
c
d
e
g
i
l
m
n
o
p
q
r
s
t
u
w
Related Symbols
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
p
q
r
s
t
u
w
Variables
a
b
c
d
e
f
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
a
b
c
d
m
n
t
u
v
Enumerations
a
c
d
f
i
k
n
o
p
u
x
Enumerator
a
b
c
d
f
g
h
i
k
m
n
p
q
r
s
t
u
x
Macros
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
msg.h
Go to the documentation of this file.
1
#ifndef __MSG_H__
2
#define __MSG_H__
3
4
#include <stdio.h>
5
#include "
prefs.h
"
6
7
/*
8
* You can disable any MSG* macro by adding the '_' prefix.
9
*/
10
#define _MSG(...)
11
#define _MSG_WARN(...)
12
#define _MSG_HTTP(...)
13
14
#define MSG_INNARDS(prefix, ...) \
15
D_STMT_START { \
16
if (prefs.show_msg){ \
17
printf(prefix __VA_ARGS__); \
18
fflush (stdout); \
19
} \
20
} D_STMT_END
14
#define MSG_INNARDS(prefix, ...) \
…
21
22
#define MSG(...) MSG_INNARDS("", __VA_ARGS__)
23
#define MSG_WARN(...) MSG_INNARDS("** WARNING **: ", __VA_ARGS__)
24
#define MSG_ERR(...) MSG_INNARDS("** ERROR **: ", __VA_ARGS__)
25
#define MSG_HTTP(...) MSG_INNARDS("HTTP warning: ", __VA_ARGS__)
26
27
#endif
/* __MSG_H__ */
prefs.h
src
msg.h
Generated on Sun Mar 30 2025 01:42:34 for Dillo by
1.9.8