AceTime  1.11.1
Date and time classes for Arduino that support timezones from the TZ Database.
common.h
1 /*
2  * MIT License
3  * Copyright (c) 2018 Brian T. Park
4  */
5 
6 #ifndef ACE_TIME_COMMON_COMMON_H
7 #define ACE_TIME_COMMON_COMMON_H
8 
9 #include <stdint.h>
10 
11 namespace ace_time {
12 
17 typedef int32_t acetime_t;
18 
19 }
20 
21 #endif