16 lines
239 B
C
16 lines
239 B
C
|
|
#include <debug.h>
|
|
|
|
#include "../inheritance.h"
|
|
|
|
#include "free.h"
|
|
#include "read.h"
|
|
#include "inheritance.h"
|
|
|
|
struct istream_inheritance file_istream_inheritance =
|
|
{
|
|
.read = file_istream_read,
|
|
|
|
.free = free_file_istream,
|
|
};
|
|
|