lambda-calculus/wcostream/inheritance.h
2025-01-13 20:36:07 -06:00

20 lines
300 B
C

#ifndef STRUCT_WCOSTREAM_INHERITANCE
#define STRUCT_WCOSTREAM_INHERITANCE
#include <wchar.h>
struct wcostream;
struct wcostream_inheritance
{
void (*write)(
struct wcostream*,
const wchar_t*,
size_t);
void (*free)(
struct wcostream* this);
};
#endif