Home
last modified time | relevance | path

Searched refs:is_leap_year (Results 1 – 1 of 1) sorted by relevance

/lvgl-3.7.0/src/extra/widgets/calendar/
Dlv_calendar.c35 static uint8_t is_leap_year(uint32_t year);
343 return (month == 1) ? (28 + is_leap_year(year)) : 31 - month % 7 % 2; in get_month_length()
351 static uint8_t is_leap_year(uint32_t year) in is_leap_year() function