16 lines
225 B
C
16 lines
225 B
C
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
struct ostream;
|
|
|
|
struct ostream_inheritance
|
|
{
|
|
void (*write)(
|
|
struct ostream*,
|
|
const uint8_t*,
|
|
size_t);
|
|
|
|
void (*free)(
|
|
struct ostream*);
|
|
};
|