| 442 | |
| 443 | |
| 444 | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) { |
| 445 | lua_lock(L); |
| 446 | setnvalue(L->top, cast_num(n)); |
| 447 | api_incr_top(L); |
| 448 | lua_unlock(L); |
| 449 | } |
| 450 | |
| 451 | |
| 452 | LUA_API void lua_pushlstring (lua_State *L, const char *s, size_t len) { |
no outgoing calls
no test coverage detected