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

Function luaL_pushresult

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

Source from the content-addressed store, hash-verified

429
430
431LUALIB_API void luaL_pushresult (luaL_Buffer *B) {
432 lua_State *L = B->L;
433 lua_pushlstring(L, B->b, B->n);
434 if (buffonstack(B))
435 lua_remove(L, -2); /* remove old buffer */
436}
437
438
439LUALIB_API void luaL_pushresultsize (luaL_Buffer *B, size_t sz) {

Callers 6

str_dumpFunction · 0.70
str_gsubFunction · 0.70
str_formatFunction · 0.70
luaL_pushresultsizeFunction · 0.70
luaL_gsubFunction · 0.70
tconcatFunction · 0.70

Calls 2

lua_pushlstringFunction · 0.70
lua_removeFunction · 0.70

Tested by

no test coverage detected