29 ushort readShort(FILE *fh)
39 ulong readLong(FILE *fh)
51 l=((c1<<24)|(c2<<16)|(c3<<8)|c4);
57 void printfdebug(
const char *format,
int a,
int b,
int c)
59 char *s=(
char *)format;
68 case (1) : fprintf(stderr,format,a);
break;
69 case (2) : fprintf(stderr,format,a,b);
break;
70 case (3) : fprintf(stderr,format,a,b,c);
break;
71 default : fprintf(stderr,format);
break;
76 void printfdebug(
const char *format,
int a,
long b)
78 fprintf(stderr,format,a,b);
81 void printfdebug(
const char *format,
double a,
double b,
double c)
83 char *s=(
char *)format;
92 case (1) : fprintf(stderr,format,a);
break;
93 case (2) : fprintf(stderr,format,a,b);
break;
94 case (3) : fprintf(stderr,format,a,b,c);
break;
95 default : fprintf(stderr,format);
break;
101 void printfdebug(
const char *,
int ,
int ,
int )
104 void printfdebug(
const char *,
int ,
long )
107 void printfdebug(
const char *,
double ,
double ,
double )