(This is the documentation for SDL3, which is under heavy development and the API is changing! SDL2 is the current stable version!)

SDL_AUDIO_ISLITTLEENDIAN

Determine if an SDL_AudioFormat represents littleendian data.

Header File

Defined in <SDL3/SDL_audio.h>

Syntax

#define SDL_AUDIO_ISLITTLEENDIAN(x)  (!SDL_AUDIO_ISBIGENDIAN(x))

Macro Parameters

x an SDL_AudioFormat value

Return Value

Returns non-zero if format is littleendian, zero otherwise.

Remarks

For example, SDL_AUDIO_ISLITTLEENDIAN(SDL_AUDIO_S16BE) returns 0.

Thread Safety

It is safe to call this macro from any thread.

Version

This macro is available since SDL 3.0.0.


CategoryAPI, CategoryAPIMacro, CategoryAudio