plucky (3) SDL_Quit.3.gz

Provided by: libsdl3-doc_3.2.4+ds-2_all bug

NAME

       SDL_Quit - Clean up all initialized subsystems.

HEADER FILE

       Defined in SDL3/SDL_init.h

SYNOPSIS

       #include "SDL3/SDL.h"

       void SDL_Quit(void);

DESCRIPTION

       You  should  call  this  function  even  if  you  have  already  shutdown each initialized subsystem with
       SDL_QuitSubSystem (). It is safe to call this function even in the case of errors in initialization.

       You can use this function with atexit() to ensure that it is run when your application is  shutdown,  but
       it is not wise to do this from a library or other dynamically loaded code.

AVAILABILITY

       This function is available since SDL 3.2.0.

SEE ALSO

       (3), SDL_Init(3), (3), SDL_QuitSubSystem(3)