| 555 | |
| 556 | |
| 557 | LUA_API void lua_pushboolean (lua_State *L, int b) { |
| 558 | lua_lock(L); |
| 559 | setbvalue(L->top, (b != 0)); /* ensure that true is 1 */ |
| 560 | api_incr_top(L); |
| 561 | lua_unlock(L); |
| 562 | } |
| 563 | |
| 564 | |
| 565 | LUA_API void lua_pushlightuserdata (lua_State *L, void *p) { |
no outgoing calls
no test coverage detected