| 501 | |
| 502 | |
| 503 | LUA_API void lua_pushboolean (lua_State *L, int b) { |
| 504 | lua_lock(L); |
| 505 | setbvalue(L->top, (b != 0)); /* ensure that true is 1 */ |
| 506 | api_incr_top(L); |
| 507 | lua_unlock(L); |
| 508 | } |
| 509 | |
| 510 | |
| 511 | LUA_API void lua_pushlightuserdata (lua_State *L, void *p) { |
no outgoing calls
no test coverage detected