Function SDL_GetDayOfWeek

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

Get the day of week 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 a value between 0 and 6 (0 being Sunday) 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.