repo.or.cz
/
xiph
/
unicode.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bring legend handling in line with the 1d panels, fixing a few update bugs along...
[xiph/unicode.git]
/
cdparanoia
/
report.c
blob
cc5832f07d6975d5d729ea2a6b4564cc9e7c5920
1
#include <stdio.h>
2
#include
"interface/cdda_interface.h"
3
4
int
quiet
=
0
;
5
int
verbose
=
CDDA_MESSAGE_FORGETIT
;
6
7
void
report
(
char
*
s
){
8
if
(!
quiet
){
9
fprintf
(
stderr
,
s
);
10
fputc
(
'
\n
'
,
stderr
);
11
}
12
}
13
14
void
report2
(
char
*
s
,
char
*
s2
){
15
if
(!
quiet
){
16
fprintf
(
stderr
,
s
,
s2
);
17
fputc
(
'
\n
'
,
stderr
);
18
}
19
}
20
21
void
report3
(
char
*
s
,
char
*
s2
,
char
*
s3
){
22
if
(!
quiet
){
23
fprintf
(
stderr
,
s
,
s2
,
s3
);
24
fputc
(
'
\n
'
,
stderr
);
25
}
26
}