| 2350 | |
| 2351 | |
| 2352 | LUA_API void lua_pushboolean (lua_State *L, int b) { |
| 2353 | lua_lock(L); |
| 2354 | setbvalue(L->top, (b != 0)); /* ensure that true is 1 */ |
| 2355 | api_incr_top(L); |
| 2356 | lua_unlock(L); |
| 2357 | } |
| 2358 | |
| 2359 | |
| 2360 | LUA_API void lua_pushlightuserdata (lua_State *L, void *p) { |
no outgoing calls
no test coverage detected