#pragma once #include #include #define MAX_STRING_ALLOC 1024 * 1024 typedef struct Hdr { vlong len; vlong cap; byte buf[]; } Hdr;