mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-02 04:52:10 +00:00
* New holidays and weekday helper * Got rid of var/ * Added separate Thanksgivings and removed an indentation on Tuesday * Makes Mother's Day less ambiguous. * Adds Ramadan heck yea * Gives Ramadan a fixer-upper so it is accurate for a good while
16 lines
309 B
Plaintext
16 lines
309 B
Plaintext
/*
|
|
|
|
Days of the week to make it easier to reference them.
|
|
|
|
When using time2text(), please use "DDD" to find the weekday. Refrain from using "Day"
|
|
|
|
*/
|
|
|
|
#define MONDAY "Mon"
|
|
#define TUESDAY "Tue"
|
|
#define WEDNESDAY "Wed"
|
|
#define THURSDAY "Thu"
|
|
#define FRIDAY "Fri"
|
|
#define SATURDAY "Sat"
|
|
#define SUNDAY "Sun"
|