| 796 | |
| 797 | |
| 798 | LUALIB_API lua_Integer luaL_len (lua_State *L, int idx) { |
| 799 | lua_Integer l; |
| 800 | int isnum; |
| 801 | lua_len(L, idx); |
| 802 | l = lua_tointegerx(L, -1, &isnum); |
| 803 | if (!isnum) |
| 804 | luaL_error(L, "object length is not an integer"); |
| 805 | lua_pop(L, 1); /* remove object */ |
| 806 | return l; |
| 807 | } |
| 808 | |
| 809 | |
| 810 | LUALIB_API const char *luaL_tolstring (lua_State *L, int idx, size_t *len) { |
nothing calls this directly
no test coverage detected