| 575 | } |
| 576 | |
| 577 | LUA_API void lua_pushinteger(lua_State *L, lua_Integer n) |
| 578 | { |
| 579 | setintptrV(L->top, n); |
| 580 | incr_top(L); |
| 581 | } |
| 582 | |
| 583 | LUA_API void lua_pushlstring(lua_State *L, const char *str, size_t len) |
| 584 | { |
no outgoing calls
no test coverage detected