| 618 | } |
| 619 | |
| 620 | LUA_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 | |
| 628 | LUA_API void lua_pushlightuserdata(lua_State *L, void *p) |
| 629 | { |
no outgoing calls
no test coverage detected