SDL_WriteU8 - Use this function to write a byte to an SDL_IOStream .
Contents
Availability
This function is available since SDL 3.2.0.
Simple Directmedia Layer SDL 3.2.10 SDL_WriteU8(3)
Function Parameters
dst the SDL_IOStream
to write to.
value the byte value to write.
Header File
Defined in SDL3/SDL_iostream.h
Name
SDL_WriteU8 - Use this function to write a byte to an SDL_IOStream .
Return Value
Returns true on successful write or false on failure; call
SDL_GetError () for more information.
Synopsis
#include"SDL3/SDL.h"boolSDL_WriteU8(SDL_IOStream*dst,Uint8value);
Thread Safety
This function is not thread safe.
