| 478 | |
| 479 | |
| 480 | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) { |
| 481 | lua_lock(L); |
| 482 | setnvalue(L->top, cast_num(n)); |
| 483 | api_incr_top(L); |
| 484 | lua_unlock(L); |
| 485 | } |
| 486 | |
| 487 | |
| 488 | LUA_API void lua_pushunsigned (lua_State *L, lua_Unsigned u) { |
no outgoing calls
no test coverage detected