52 lines
1.3 KiB
C
52 lines
1.3 KiB
C
/* mz_os.h -- System functions
|
|
Version 2.0.0, October 4th, 2017
|
|
part of the MiniZip project
|
|
|
|
Copyright (C) 2012-2017 Nathan Moinvaziri
|
|
https://github.com/nmoinvaz/minizip
|
|
|
|
This program is distributed under the terms of the same license as zlib.
|
|
See the accompanying LICENSE file for the full text of the license.
|
|
*/
|
|
|
|
#ifndef _MZ_OS_H
|
|
#define _MZ_OS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/***************************************************************************/
|
|
|
|
#if !defined(_WIN32) && !defined(USEWIN32IOAPI)
|
|
#include "mz_os_posix.h"
|
|
#include "mz_strm_posix.h"
|
|
#else
|
|
#include "mz_os_win32.h"
|
|
#include "mz_strm_win32.h"
|
|
#endif
|
|
|
|
/***************************************************************************/
|
|
|
|
int32_t mz_os_file_exists(const char *path);
|
|
int64_t mz_os_file_get_size(const char *path);
|
|
|
|
/***************************************************************************/
|
|
|
|
int32_t mz_dosdate_to_tm(uint64_t dos_date, struct tm *ptm);
|
|
// Convert dos date/time format to struct tm
|
|
time_t mz_dosdate_to_time_t(uint64_t dos_date);
|
|
// Convert dos date/time format to time_t
|
|
uint32_t mz_tm_to_dosdate(const struct tm *ptm);
|
|
// Convert struct tm to dos date/time format
|
|
|
|
/***************************************************************************/
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|