4-variable-simplifier/string/struct.h
2026-04-25 16:00:10 -04:00

9 lines
81 B
C

struct string
{
char* data;
size_t len;
unsigned refcount;
};