aboutsummaryrefslogtreecommitdiff
path: root/src/base/string/internal.h
blob: 8c16c64586bf3aa82b322809e29ab8249fb4771d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#include <u.h>
#include <base.h>

#define MAX_STRING_ALLOC 1024 * 1024

typedef struct Hdr
{
    vlong len;
    vlong cap;
    byte  buf[];
} Hdr;