MCPcopy Create free account
hub / github.com/bulletphysics/bullet3 / lua_pushboolean

Function lua_pushboolean

examples/ThirdPartyLibs/lua-5.2.3/src/lapi.c:620–626  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

618}
619
620LUA_API void lua_pushboolean(lua_State *L, int b)
621{
622 lua_lock(L);
623 setbvalue(L->top, (b != 0)); /* ensure that true is 1 */
624 api_incr_top(L);
625 lua_unlock(L);
626}
627
628LUA_API void lua_pushlightuserdata(lua_State *L, void *p)
629{

Callers 15

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

Calls

no outgoing calls

Tested by

no test coverage detected