MCPcopy Create free account
hub / github.com/BigPig0/RelayLive / lua_pushboolean

Function lua_pushboolean

ThirdParty/lua/lua/lapi.c:550–555  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

548
549
550LUA_API void lua_pushboolean (lua_State *L, int b) {
551 lua_lock(L);
552 setbvalue(L->top, (b != 0)); /* ensure that true is 1 */
553 api_incr_top(L);
554 lua_unlock(L);
555}
556
557
558LUA_API void lua_pushlightuserdata (lua_State *L, void *p) {

Callers 15

PushBooleanFunction · 0.85
luaB_rawequalFunction · 0.85
luaB_collectgarbageFunction · 0.85
finishpcallFunction · 0.85
luaB_pcallFunction · 0.85
luaB_xpcallFunction · 0.85
math_ultFunction · 0.85
luaL_fileresultFunction · 0.85
luaL_execresultFunction · 0.85
luaB_coresumeFunction · 0.85
luaB_yieldableFunction · 0.85
luaB_corunningFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected