2017-10-05 23:32:57 -07:00
|
|
|
/* 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>
|
2017-10-10 10:55:50 -07:00
|
|
|
#include <time.h>
|
2017-10-05 23:32:57 -07:00
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-09 00:40:53 -07:00
|
|
|
int32_t mz_file_exists(const char *path);
|
|
|
|
// Checks to see if a file exists
|
|
|
|
int64_t mz_file_get_size(const char *path);
|
|
|
|
// Gets the size of a file
|
|
|
|
int16_t mz_make_dir(const char *path);
|
|
|
|
// Creates a directory recursively
|
2017-10-05 23:32:57 -07:00
|
|
|
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
|