Function SDL_GetDayOfYear

pub unsafe extern "C" fn SDL_GetDayOfYear(
    year: i32,
    month: i32,
    day: i32,
) -> i32
Available on crate feature dep_sdl3 only.
Expand description

Get the day of year for a calendar date.

§Parameters

  • year: the year component of the date.
  • month: the month component of the date.
  • day: the day component of the date.

§Return value

Returns the day of year [0-365] if the date is valid or -1 on failure; call SDL_GetError() for more information.

§Availability

This function is available since SDL 3.2.0.