| 548 | |
| 549 | |
| 550 | LUA_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 | |
| 558 | LUA_API void lua_pushlightuserdata (lua_State *L, void *p) { |
no outgoing calls
no test coverage detected