| 457 | |
| 458 | |
| 459 | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) { |
| 460 | lua_lock(L); |
| 461 | setnvalue(L->top, cast_num(n)); |
| 462 | api_incr_top(L); |
| 463 | lua_unlock(L); |
| 464 | } |
| 465 | |
| 466 | |
| 467 | LUA_API void lua_pushlstring (lua_State *L, const char *s, size_t len) { |
no outgoing calls
no test coverage detected