pub unsafe extern "C" fn SDL_IOprintf(
context: *mut SDL_IOStream,
fmt: *const c_char,
...
) -> usizeExpand description
Print to an SDL_IOStream data stream.
This function does formatted printing to the stream.
§Parameters
context: a pointer to anSDL_IOStreamstructure.fmt: a printf() style format string....: additional parameters matching % tokens in thefmtstring, if any.
§Return value
Returns the number of bytes written or 0 on failure; call SDL_GetError()
for more information.
§Thread safety
Do not use the same SDL_IOStream from two threads at once.
§Availability
This function is available since SDL 3.2.0.