The ratio a:b is equal to (a/b):1, not 1:(a/b).
[xiph/unicode.git] / cdparanoia / report.c
blobcc5832f07d6975d5d729ea2a6b4564cc9e7c5920
1 #include <stdio.h>
2 #include "interface/cdda_interface.h"
4 int quiet=0;
5 int verbose=CDDA_MESSAGE_FORGETIT;
7 void report(char *s){
8 if(!quiet){
9 fprintf(stderr,s);
10 fputc('\n',stderr);
14 void report2(char *s, char *s2){
15 if(!quiet){
16 fprintf(stderr,s,s2);
17 fputc('\n',stderr);
21 void report3(char *s, char *s2, char *s3){
22 if(!quiet){
23 fprintf(stderr,s,s2,s3);
24 fputc('\n',stderr);