| 435 | |
| 436 | |
| 437 | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) { |
| 438 | lua_lock(L); |
| 439 | setnvalue(L->top, cast_num(n)); |
| 440 | api_incr_top(L); |
| 441 | lua_unlock(L); |
| 442 | } |
| 443 | |
| 444 | |
| 445 | LUA_API void lua_pushlstring (lua_State *L, const char *s, size_t len) { |
no outgoing calls
no test coverage detected