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

Function lua_pushstring

Source/Misc/lua/src/lua.c:2303–2308  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2301
2302
2303LUA_API void lua_pushstring (lua_State *L, const char *s) {
2304if (s == NULL)
2305lua_pushnil(L);
2306else
2307lua_pushlstring(L, s, strlen(s));
2308}
2309
2310
2311LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,

Calls 2

lua_pushnilFunction · 0.85
lua_pushlstringFunction · 0.85

Tested by

no test coverage detected