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

Function luaL_buffinit

third-party/lua-5.2.4/src/lauxlib.c:496–501  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

494
495
496LUALIB_API void luaL_buffinit (lua_State *L, luaL_Buffer *B) {
497 B->L = L;
498 B->b = B->initb;
499 B->n = 0;
500 B->size = LUAL_BUFFERSIZE;
501}
502
503
504LUALIB_API char *luaL_buffinitsize (lua_State *L, luaL_Buffer *B, size_t sz) {

Callers 12

str_dumpFunction · 0.70
str_gsubFunction · 0.70
str_formatFunction · 0.70
luaL_buffinitsizeFunction · 0.70
luaL_gsubFunction · 0.70
tconcatFunction · 0.70
searchpathFunction · 0.70
findloaderFunction · 0.70
os_dateFunction · 0.70
read_lineFunction · 0.70
read_allFunction · 0.70
read_charsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected