AceTime  2.1.0
Date and time classes for Arduino that support timezones from the TZ Database.
common.h
Go to the documentation of this file.
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 
17 namespace ace_time {
18 
24 typedef int32_t acetime_t;
25 
26 }
27 
28 #endif
int32_t acetime_t
Type for the number of seconds from epoch.
Definition: common.h:24