sav

Sorting Algorithms Visualized
Index Commits Files Refs README LICENSE
sdl_extra.h (302B)
   1 #ifndef __SDL_EXTRA_H__
   2 #define __SDL_EXTRA_H__
   3 
   4 #include "status.h"
   5 
   6 #include <SDL2/SDL.h>
   7 #include <SDL2/SDL_ttf.h>
   8 
   9 #define WIN_TITLE "SAV: Sorting Algorithms Visualized"
  10 
  11 status_t SDL_setup(SDL_Window **win, SDL_Renderer **rend);
  12 status_t SDL_cleanup(SDL_Window *win, SDL_Renderer *rend);
  13 
  14 #endif
  15