10 static size_t cout_write(
io_t *
self,
const void *src,
size_t size)
13 return fwrite(src, 1,
size, stdout);
16 static size_t cout_fwrite(
io_t *
self,
const char *
fmt, va_list args)
19 return vfprintf(stdout,
fmt, args);
22 static size_t cerr_write(
io_t *
self,
const void *src,
size_t size)
25 return fwrite(src, 1,
size, stderr);
28 static size_t cerr_fwrite(
io_t *
self,
const char *
fmt, va_list args)
31 return vfprintf(stderr,
fmt, args);
38 .fn_fwrite = cout_fwrite,
43 .fn_fwrite = cerr_fwrite,
46 static io_t gConsoleOutIo = {
47 .
cb = &kConsoleOutCallbacks,
48 .flags = eOsAccessWrite,
53 static io_t gConsoleErrorIo = {
54 .
cb = &kConsoleErrorCallbacks,
55 .flags = eOsAccessWrite,
62 return &gConsoleOutIo;
67 return &gConsoleErrorIo;
io_t * io_stderr(void)
get the global stderr IO object
io_t * io_stdout(void)
get the global stdout IO object
#define CT_UNUSED(x)
mark a variable as unused
CT_NODISCARD STA_FORMAT_STRING const char * fmt
io_write_t fn_write
write callback may be NULL on non-writable objects
const io_callbacks_t * cb
callback struct