28 lines
412 B
C
28 lines
412 B
C
/*
|
|
* miniz_header.h
|
|
*
|
|
* Created on: 04/ago/2017
|
|
* Author: chessaa
|
|
*/
|
|
|
|
#ifndef MINIZ_HEADER_H_
|
|
#define MINIZ_HEADER_H_
|
|
|
|
#include "bsk_miniz.h"
|
|
#include "miniz.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define mz_zip_info_t bsk_zip_info_t
|
|
|
|
extern int mz_check_zip_header(struct mz_zip_info_t* zi, const void* const data, unsigned int dlen);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* MINIZ_HEADER_H_ */
|