| 14717 | |
| 14718 | |
| 14719 | static void set2 (lua_State *L, int i, int j) { |
| 14720 | lua_rawseti(L, 1, i); |
| 14721 | lua_rawseti(L, 1, j); |
| 14722 | } |
| 14723 | |
| 14724 | static int sort_comp (lua_State *L, int a, int b) { |
| 14725 | if (!lua_isnil(L, 2)) { /* function? */ |
no test coverage detected