| 79 | |
| 80 | |
| 81 | static int b_xor(lua_State *L) { |
| 82 | int i, n = lua_gettop(L); |
| 83 | lua_Unsigned r = 0; |
| 84 | for (i = 1; i <= n; i++) |
| 85 | r ^= checkunsigned(L, i); |
| 86 | pushunsigned(L, trim(r)); |
| 87 | return 1; |
| 88 | } |
| 89 | |
| 90 | |
| 91 | static int b_not(lua_State *L) { |
nothing calls this directly
no test coverage detected