| 2284 | |
| 2285 | |
| 2286 | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) { |
| 2287 | lua_lock(L); |
| 2288 | setnvalue(L->top, cast_num(n)); |
| 2289 | api_incr_top(L); |
| 2290 | lua_unlock(L); |
| 2291 | } |
| 2292 | |
| 2293 | |
| 2294 | LUA_API void lua_pushlstring (lua_State *L, const char *s, size_t len) { |
no outgoing calls
no test coverage detected