16 lines
245 B
C
16 lines
245 B
C
|
|
#include <debug.h>
|
|
|
|
#include "../inheritance.h"
|
|
|
|
#include "free.h"
|
|
#include "read.h"
|
|
#include "inheritance.h"
|
|
|
|
struct istream_inheritance string_istream_inheritance =
|
|
{
|
|
.read = string_istream_read,
|
|
|
|
.free = free_string_istream,
|
|
};
|
|
|