MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / lua_pushlstring

Function lua_pushlstring

Source/Misc/lua/src/lua.c:2294–2300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2292
2293
2294LUA_API void lua_pushlstring (lua_State *L, const char *s, size_t len) {
2295lua_lock(L);
2296luaC_checkGC(L);
2297setsvalue2s(L, L->top, luaS_newlstr(L, s, len));
2298api_incr_top(L);
2299lua_unlock(L);
2300}
2301
2302
2303LUA_API void lua_pushstring (lua_State *L, const char *s) {

Callers 15

usb.cFile · 0.85
luausb_transfer_cbFunction · 0.85
getMethod · 0.85
toMethod · 0.85
lua_pushstringFunction · 0.85
luaL_findtableFunction · 0.85
emptybufferFunction · 0.85
test_eofFunction · 0.85

Calls 1

luaS_newlstrFunction · 0.85

Tested by 1

test_eofFunction · 0.68