mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 09:19:17 +01:00
9e79c9d99b
* code cleanup
20 lines
217 B
C
20 lines
217 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
|