lisp-take-1/parse/istream/inheritance.h

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