| 69 | |
| 70 | |
| 71 | static int b_or(lua_State *L) { |
| 72 | int i, n = lua_gettop(L); |
| 73 | lua_Unsigned r = 0; |
| 74 | for (i = 1; i <= n; i++) |
| 75 | r |= checkunsigned(L, i); |
| 76 | pushunsigned(L, trim(r)); |
| 77 | return 1; |
| 78 | } |
| 79 | |
| 80 | |
| 81 | static int b_xor(lua_State *L) { |
nothing calls this directly
no test coverage detected