SDL_WriteS32BE
Use this function to write 32 bits in native format to an SDL_IOStream as big-endian data.
- Provided by: libsdl3-doc (Version: 3.4.2+ds-1ubuntu1)
- Source: libsdl3
- Report a bug
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.
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.