MCPcopy Create free account
hub / github.com/F-Stack/f-stack / luaL_buffinit

Function luaL_buffinit

freebsd/contrib/openzfs/module/lua/lauxlib.c:456–461  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

454
455
456LUALIB_API void luaL_buffinit (lua_State *L, luaL_Buffer *B) {
457 B->L = L;
458 B->b = B->initb;
459 B->n = 0;
460 B->size = LUAL_BUFFERSIZE;
461}
462
463
464LUALIB_API char *luaL_buffinitsize (lua_State *L, luaL_Buffer *B, size_t sz) {

Callers 6

str_dumpFunction · 0.70
str_gsubFunction · 0.70
str_formatFunction · 0.70
luaL_buffinitsizeFunction · 0.70
luaL_gsubFunction · 0.70
tconcatFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected