stdio provider struct More...
stdio provider struct
Definition at line 62 of file stdio_base.h.
#include <stdio_base.h>
Data Fields | |
void(* | open )(void) |
Initialize and attach the stdio provider. | |
void(* | close )(void) |
Detach the stdio provider. | |
ssize_t(* | write )(const void *src, size_t len) |
Write len bytes from src into stdout. | |
void(* stdio_provider_t::close) (void) |
Detach the stdio provider.
Definition at line 70 of file stdio_base.h.
void(* stdio_provider_t::open) (void) |
Initialize and attach the stdio provider.
Definition at line 66 of file stdio_base.h.
ssize_t(* stdio_provider_t::write) (const void *src, size_t len) |
Write len
bytes from src
into stdout.
[in] | src | buffer to read from |
[in] | len | nr of bytes to write |
Definition at line 80 of file stdio_base.h.