Merge pull request #12505 from deathride58/morelgbtholidays

Adds more LGBTQIA+ related holidays
This commit is contained in:
Lin
2020-06-12 21:28:32 -05:00
committed by GitHub
2 changed files with 88 additions and 1 deletions
+2
View File
@@ -39,6 +39,8 @@ When using time2text(), please use "DDD" to find the weekday. Refrain from using
#define SATURDAY "Sat"
#define SUNDAY "Sun"
#define WEEKDAY2NUM(D) (D == SUNDAY ? 1 : D == MONDAY ? 2 : D == TUESDAY ? 3 : D == WEDNESDAY ? 4 : D == THURSDAY ? 5 : D == FRIDAY ? 6 : 7) //this looks ugly, but switch statements can't be used as vars, so *shrug
#define SECONDS *10
#define MINUTES SECONDS*60