| 572 | |
| 573 | |
| 574 | LUA_API void lua_pushboolean (lua_State *L, int b) { |
| 575 | lua_lock(L); |
| 576 | setbvalue(L->top, (b != 0)); /* ensure that true is 1 */ |
| 577 | api_incr_top(L); |
| 578 | lua_unlock(L); |
| 579 | } |
| 580 | |
| 581 | |
| 582 | LUA_API void lua_pushlightuserdata (lua_State *L, void *p) { |
no outgoing calls
no test coverage detected