staticlibs / ccronexpr

Cron expression parsing in ANSI C
Apache License 2.0
150 stars 78 forks source link

Minor ram reduction (52 bytes) #9

Closed alfred-ai closed 6 years ago

alfred-ai commented 6 years ago

Made DAYS_ARR[]/MONTHS_ARR[] constant. Previously the content of these arrays were changeable, i.e. DAYS_ARR[0] = "some other string"; was allowed.

staticlibs commented 6 years ago

Thanks! Merged.