MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / lua_pushboolean

Function lua_pushboolean

third-party/lua-5.2.4/src/lapi.c:577–582  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

575
576
577LUA_API void lua_pushboolean (lua_State *L, int b) {
578 lua_lock(L);
579 setbvalue(L->top, (b != 0)); /* ensure that true is 1 */
580 api_incr_top(L);
581 lua_unlock(L);
582}
583
584
585LUA_API void lua_pushlightuserdata (lua_State *L, void *p) {

Callers 15

pmainFunction · 0.70
luaB_rawequalFunction · 0.70
luaB_collectgarbageFunction · 0.70
finishpcallFunction · 0.70
luaL_fileresultFunction · 0.70
luaL_execresultFunction · 0.70
luaB_coresumeFunction · 0.70
luaB_corunningFunction · 0.70
ll_loadfuncFunction · 0.70
ll_requireFunction · 0.70
os_executeFunction · 0.70
setboolfieldFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected