MCPcopy Create free account
hub / github.com/cuberite/cuberite / lua_pushstring

Function lua_pushstring

lib/lua/src/lapi.c:454–459  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

452
453
454LUA_API void lua_pushstring (lua_State *L, const char *s) {
455 if (s == NULL)
456 lua_pushnil(L);
457 else
458 lua_pushlstring(L, s, strlen(s));
459}
460
461
462LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,

Callers 15

tolua_pushstringFunction · 0.85
tolua_pushusertypeFunction · 0.85
tolua_typenameFunction · 0.85
lua_isusertableFunction · 0.85
push_table_instanceFunction · 0.85
lua_isusertypeFunction · 0.85
tolua_newmetatableFunction · 0.85
mapsuperFunction · 0.85
set_uboxFunction · 0.85
tolua_bnd_inheritFunction · 0.85
tolua_bnd_setpeerFunction · 0.85

Calls 2

lua_pushnilFunction · 0.85
lua_pushlstringFunction · 0.85

Tested by

no test coverage detected