| 508 | |
| 509 | |
| 510 | LUA_API void lua_pushboolean (lua_State *L, int b) { |
| 511 | lua_lock(L); |
| 512 | setbvalue(L->top, (b != 0)); /* ensure that true is 1 */ |
| 513 | api_incr_top(L); |
| 514 | lua_unlock(L); |
| 515 | } |
| 516 | |
| 517 | |
| 518 | LUA_API void lua_pushlightuserdata (lua_State *L, void *p) { |
no outgoing calls
no test coverage detected