diff options
author | Douglas Christman <DouglasChristman@gmail.com> | 2016-11-22 10:05:10 -0500 |
---|---|---|
committer | Douglas Christman <DouglasChristman@gmail.com> | 2016-11-23 12:37:43 -0500 |
commit | 8ea803516e4a4265a77d026f740c272cd60107a4 (patch) | |
tree | 639382e116b9be3ae51635dcb3bcbcf88c1b3ed4 /src/basic/calendarspec.h | |
parent | f6e7d66b9f1db07ae80af3d75dabaf95f7f43a15 (diff) |
calendarspec: add support for scheduling timers at the end of the month
"*-*~1" => The last day of every month
"*-02~3..5" => The third, fourth, and fifth last days in February
"Mon 05~07/1" => The last Monday in May
Resolves #3861
Diffstat (limited to 'src/basic/calendarspec.h')
-rw-r--r-- | src/basic/calendarspec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/basic/calendarspec.h b/src/basic/calendarspec.h index c6087228fd..78af27403c 100644 --- a/src/basic/calendarspec.h +++ b/src/basic/calendarspec.h @@ -36,6 +36,7 @@ typedef struct CalendarComponent { typedef struct CalendarSpec { int weekdays_bits; + bool end_of_month; bool utc; int dst; |