16 lines
247 B
C
16 lines
247 B
C
|
|
#include <debug.h>
|
|
|
|
#include "../inheritance.h"
|
|
|
|
#include "free.h"
|
|
#include "read.h"
|
|
#include "inheritance.h"
|
|
|
|
struct wcistream_inheritance file_wcistream_inheritance =
|
|
{
|
|
.read = file_wcistream_read,
|
|
|
|
.free = free_file_wcistream,
|
|
};
|
|
|