diff --git a/sk2a/compressor.c b/sk2a/compressor.c index 555adda..1c4310c 100644 --- a/sk2a/compressor.c +++ b/sk2a/compressor.c @@ -99,10 +99,10 @@ void decompress(FILE* infile,FILE* outfile){ char buffer[BUFSIZE]; int size = 0; int k = 0; - fseek(infile, 0, SEEK_END); - long fileSize = ftell(infile); - fseek(infile, 0, SEEK_SET); - printf("size: %ld\n", fileSize); + //fseek(infile, 0, SEEK_END); + //long fileSize = ftell(infile); + //fseek(infile, 0, SEEK_SET); + //printf("size: %ld\n", fileSize); char letter; while(!feof(infile)){ size = 0; @@ -124,7 +124,7 @@ while(!feof(infile)){ buffer[size] = letter; size++; } - printf("%d\n",k); + //printf("%d\n",k); k+=3; }