lambda-calc-1/wcistream/inheritance.h
2025-01-20 13:40:51 -06:00

16 lines
230 B
C

#ifndef STRUCT_ISTREAM_INHERITANCE
#define STRUCT_ISTREAM_INHERITANCE
struct wcistream;
struct wcistream_inheritance
{
void (*read)(
struct wcistream*);
void (*free)(
struct wcistream*);
};
#endif