Use this function to write 16 bits in native format to an SDL_IOStream as big-endian data.
Defined in <SDL3/SDL_iostream.h>
bool SDL_WriteS16BE(SDL_IOStream *dst, Sint16 value);
SDL_IOStream * | dst | the stream to which data will be written. |
Sint16 | value | the data to be written, in native format. |
(bool) Returns true on successful write or false on failure; call SDL_GetError() for more information.
SDL byteswaps the data only if necessary, so the application always specifies native format, and the data written will be in big-endian format.
This function is available since SDL 3.1.3.