| 464 | |
| 465 | |
| 466 | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) { |
| 467 | lua_lock(L); |
| 468 | setivalue(L->top, n); |
| 469 | api_incr_top(L); |
| 470 | lua_unlock(L); |
| 471 | } |
| 472 | |
| 473 | |
| 474 | LUA_API const char *lua_pushlstring (lua_State *L, const char *s, size_t len) { |
no outgoing calls
no test coverage detected