16 lines
253 B
C
16 lines
253 B
C
|
|
#include <debug.h>
|
|
|
|
#include "../inheritance.h"
|
|
|
|
#include "free.h"
|
|
#include "read.h"
|
|
#include "inheritance.h"
|
|
|
|
struct wcistream_inheritance string_wcistream_inheritance =
|
|
{
|
|
.read = string_wcistream_read,
|
|
|
|
.free = free_string_wcistream,
|
|
};
|
|
|