mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
18 lines
261 B
C
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
|