12 lines
123 B
C
12 lines
123 B
C
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
struct string
|
|
{
|
|
wchar_t* data;
|
|
size_t n;
|
|
|
|
unsigned refcount;
|
|
};
|
|
|