mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 19:00:54 +01:00
13 lines
512 B
C
13 lines
512 B
C
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
#pragma once
|
|
|
|
#include "lobject.h"
|
|
|
|
// buffer size limit
|
|
#define MAX_BUFFER_SIZE (1 << 30)
|
|
|
|
// GCObject size has to be at least 16 bytes, so a minimum of 8 bytes is always reserved
|
|
#define sizebuffer(len) (offsetof(Buffer, data) + ((len) < 8 ? 8 : (len)))
|
|
|
|
LUAI_FUNC Buffer* luaB_newbuffer(lua_State* L, size_t s);
|
|
LUAI_FUNC void luaB_freebuffer(lua_State* L, Buffer* u, struct lua_Page* page);
|