MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / luaL_prepbuffsize

Function luaL_prepbuffsize

third-party/lua-5.5.0/src/lauxlib.c:592–594  ·  view source on GitHub ↗

** returns a pointer to a free area with at least 'sz' bytes */

Source from the content-addressed store, hash-verified

590** returns a pointer to a free area with at least 'sz' bytes
591*/
592LUALIB_API char *luaL_prepbuffsize (luaL_Buffer *B, size_t sz) {
593 return prepbuffsize(B, sz, -1);
594}
595
596
597LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) {

Callers 6

addliteralFunction · 0.70
str_formatFunction · 0.70
packintFunction · 0.70
str_packFunction · 0.70
os_dateFunction · 0.70
read_charsFunction · 0.70

Calls 1

prepbuffsizeFunction · 0.70

Tested by

no test coverage detected