9 lines
134 B
C
9 lines
134 B
C
|
#ifndef __IN303_DECOMPRESS_H__
|
||
|
#define __IN303_DECOMPRESS_H__
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
void decompress(FILE* source, FILE* dest);
|
||
|
|
||
|
#endif
|