15 lines
197 B
C
15 lines
197 B
C
|
|
#include <wchar.h>
|
|
#include <stdint.h>
|
|
|
|
struct wcistream_inheritance;
|
|
|
|
struct wcistream
|
|
{
|
|
const struct wcistream_inheritance* inheritance;
|
|
|
|
wchar_t wc;
|
|
|
|
unsigned refcount;
|
|
};
|
|
|