11 lines
226 B
C
11 lines
226 B
C
|
|
#include <stdio.h>
|
||
|
|
#include <string.h>
|
||
|
|
//#include <zlib.h>
|
||
|
|
|
||
|
|
unsigned long file_size(char *filename);
|
||
|
|
|
||
|
|
int decompress_one_file(char *infilename, char *outfilename);
|
||
|
|
|
||
|
|
int compress_one_file(char *infilename, char *outfilename);
|
||
|
|
|