AceTime  0.3
Date and time classes for Arduino that support timezones from the TZ Database, and a system clock that can synchronize from an NTP server or an RTC chip.
common.h
1 #ifndef ACE_TIME_COMMON_COMMON_H
2 #define ACE_TIME_COMMON_COMMON_H
3 
4 #include <stdint.h>
5 
6 namespace ace_time {
7 
12 typedef int32_t acetime_t;
13 
14 }
15 
16 #endif