lambda-calculus/parse/wcistream/inheritance.h
2025-01-13 20:36:07 -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