AceTime  3.0.0
Date and time classes for Arduino that support timezones from the TZ Database.
All Classes Files Functions Variables Typedefs Friends Macros Pages
BrokerCommon.h
Go to the documentation of this file.
1 /*
2  * MIT License
3  * Copyright (c) 2019 Brian T. Park
4  */
5 
6 #ifndef ACE_TIME_BROKER_COMMON_H
7 #define ACE_TIME_BROKER_COMMON_H
8 
15 #include <stdint.h>
16 
17 class __FlashStringHelper;
18 
19 namespace ace_time {
20 namespace zoneinfo {
21 
30 const int kAbbrevSize = 6 + 1;
31 
48 const char* findShortName(const char* name);
49 
54 const __FlashStringHelper* findShortName(const __FlashStringHelper* fname);
55 
56 } // zoneinfo
57 } // ace_time
58 
59 #endif
const uint8_t kAbbrevSize
Size of the c-string buffer needed to hold a time zone abbreviation.
Definition: common.h:44