| 641 | } |
| 642 | |
| 643 | LUA_API void lua_pushinteger(lua_State *L, lua_Integer n) |
| 644 | { |
| 645 | setintptrV(L->top, n); |
| 646 | incr_top(L); |
| 647 | } |
| 648 | |
| 649 | LUA_API void lua_pushlstring(lua_State *L, const char *str, size_t len) |
| 650 | { |
no outgoing calls
no test coverage detected