| 575 | |
| 576 | |
| 577 | LUA_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 | |
| 585 | LUA_API void lua_pushlightuserdata (lua_State *L, void *p) { |
no outgoing calls
no test coverage detected