MCPcopy Create free account
hub / github.com/BigPig0/RelayLive / luaL_addlstring

Function luaL_addlstring

ThirdParty/lua/lua/lauxlib.c:470–474  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

468
469
470LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) {
471 char *b = luaL_prepbuffsize(B, l);
472 memcpy(b, s, l * sizeof(char));
473 luaL_addsize(B, l);
474}
475
476
477LUALIB_API void luaL_addstring (luaL_Buffer *B, const char *s) {

Callers 9

writerFunction · 0.85
add_sFunction · 0.85
str_gsubFunction · 0.85
str_packFunction · 0.85
luaL_addstringFunction · 0.85
luaL_addvalueFunction · 0.85
luaL_gsubFunction · 0.85
tconcatFunction · 0.85
os_dateFunction · 0.85

Calls 1

luaL_prepbuffsizeFunction · 0.85

Tested by

no test coverage detected