mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 17:15:06 +01:00
19 lines
229 B
C
19 lines
229 B
C
|
|
#ifndef _INFLATE_H
|
|
#define _INFLATE_H
|
|
|
|
#include <stdio.h>
|
|
#include <zlib.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int inflateFile(FILE *source, FILE *dest);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //_INFLATE_H
|