A value to represent littleendian byteorder.
Defined in <SDL3/SDL_endian.h>
#define SDL_LIL_ENDIAN 1234
This is used with the preprocessor macro SDL_BYTEORDER, to determine a platform's byte ordering:
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
"This system is littleendian.");
SDL_Log(#endif
This macro is available since SDL 3.1.3.