AceTime  0.1
Date and time classes for Arduino that supports the TZ DAtabase, and a system clock synchronized 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