1
0
mirror of https://github.com/stefanocasazza/ULib.git synced 2025-09-28 19:05:55 +08:00
ULib/include/ulib/base/zip/dostime.h
2015-01-23 17:24:36 +01:00

18 lines
261 B
C

/* dostime.h - function prototypes */
#ifndef dostime_H
#define dostime_H 1
#ifdef __cplusplus
extern "C" {
#endif
U_EXPORT time_t dos2unixtime(unsigned long dostime);
U_EXPORT unsigned long unix2dostime(time_t*);
#ifdef __cplusplus
}
#endif
#endif