taglinefilesource code
month170fs/msdos/misc.cint month,year;
month172fs/msdos/misc.cmonth = ((date >> 5) & 15)-1;
month175fs/msdos/misc.c((date & 31)-1+day_n[month]+(year/4)+year*365-((year & 3) == 0 &&
month176fs/msdos/misc.cmonth < 2 ? 1 : 0)+3653);
month186fs/msdos/misc.cint day,year,nl_day,month;
month196fs/msdos/misc.cmonth = 2;
month200fs/msdos/misc.cfor (month = 0; month < 12; month++)
month201fs/msdos/misc.cif (day_n[month] > nl_day) break;
month203fs/msdos/misc.c*date = nl_day-day_n[month-1]+1+(month << 5)+(year << 9);
month26kernel/mktime.cstatic int month[12] = {
month49kernel/mktime.cres += month[tm->tm_mon];