lambda-calc-1/ostream/inheritance.h
2025-01-13 20:36:07 -06:00

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*);
};