Reply to Maybe a bug
If you don't have an account, just leave the password field blank.
In Dinkvar.h, "void decompress_nocomp":
if ((c = getc(in)) > 255)
fread(pair,2,c-128,in);
else
{
if (c == '\r') c = '\n';
if (c == 9) c = ' ';
strchar(cbuf,c);
}
in "(c = getc(in)) > 255" it reads one character from a file. "c" is short. Then, c > 255 will never occur, right?
Or there is sense?
if ((c = getc(in)) > 255)
fread(pair,2,c-128,in);
else
{
if (c == '\r') c = '\n';
if (c == 9) c = ' ';
strchar(cbuf,c);
}
in "(c = getc(in)) > 255" it reads one character from a file. "c" is short. Then, c > 255 will never occur, right?
Or there is sense?