Provided by: libsdl3-doc_3.2.8+ds-1_all 

NAME
SDL_max - Return the greater of two values.
HEADER FILE
Defined in SDL3/SDL_stdinc.h
SYNOPSIS
#include "SDL3/SDL.h" #define SDL_max(x, y) (((x) > (y)) ? (x) : (y))
DESCRIPTION
This is a helper macro that might be more clear than writing out the comparisons directly, and works with any type that can be compared with the > operator. However, it double-evaluates both its parameters, so do not use expressions with side-effects here.
RETURN VALUE
Returns the lesser of x and y .
THREAD SAFETY
It is safe to call this macro from any thread.
AVAILABILITY
This macro is available since SDL 3.2.0. Simple Directmedia Layer SDL 3.2.8 SDL_max(3)