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

16 lines
222 B
C

#ifndef STRUCT_ISTREAM_INHERITANCE
#define STRUCT_ISTREAM_INHERITANCE
struct istream;
struct istream_inheritance
{
void (*read)(
struct istream*);
void (*free)(
struct istream*);
};
#endif