Ubuntu Manpages

SDL_WriteS32BE

Use this function to write 32 bits in native format to an SDL_IOStream as big-endian data.

#include <SDL3/SDL_iostream.h>
bool SDL_WriteS32BE(SDL_IOStream *dst, Sint32 value);

SDL byteswaps the data only if necessary, so the application always specifies native format, and the data written will be in big-endian format.

the stream to which data will be written.
the data to be written, in native format.

Returns true on successful write or false on failure; call SDL_GetError() for more information.

Do not use the same SDL_IOStream from two threads at once.

This function is available since SDL 3.2.0.