Macro useful for building other macros with strings in them.
Defined in <SDL3/SDL_stdinc.h>
#define SDL_STRINGIFY_ARG(arg) #arg
For example:
#define LOG_ERROR(X) OutputDebugString(SDL_STRINGIFY_ARG(__FUNCTION__) ": " X "\n")`
This macro is available since SDL 3.1.3.