DOKK / manpages / debian 13 / libsdl3-doc / SDL_GetDateTimeLocalePreferences.3.en
SDL_GetDateTimeLocalePreferences(3) SDL3 FUNCTIONS SDL_GetDateTimeLocalePreferences(3)

SDL_GetDateTimeLocalePreferences - Gets the current preferred date and time format for the system locale.

Defined in SDL3/SDL_time.h

#include "SDL3/SDL.h"
bool SDL_GetDateTimeLocalePreferences(SDL_DateFormat *dateFormat, SDL_TimeFormat *timeFormat);

This might be a "slow" call that has to query the operating system. It's best to ask for this once and save the results. However, the preferred formats can change, usually because the user has changed a system preference outside of your program.

a pointer to the SDL_DateFormat
to hold the returned date format, may be NULL.
a pointer to the SDL_TimeFormat
to hold the returned time format, may be NULL.

Returns true on success or false on failure; call

SDL_GetError () for more information.

This function is available since SDL 3.2.0.

SDL 3.2.10 Simple Directmedia Layer