ref: 56f48a1788a3d7e1e6ee53d58f4849c6b9b3a01c
dir: /src/libc/time/_daysyear.c/
int _daysmon[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int _daysyear(int year) { if (year%4 != 0) return 365; if (year%100 == 0 && year%400 != 0) return 365; return 366; }