| 57 | |
| 58 | |
| 59 | static int b_or (lua_State *L) { |
| 60 | int i, n = lua_gettop(L); |
| 61 | b_uint r = 0; |
| 62 | for (i = 1; i <= n; i++) |
| 63 | r |= luaL_checkunsigned(L, i); |
| 64 | lua_pushunsigned(L, trim(r)); |
| 65 | return 1; |
| 66 | } |
| 67 | |
| 68 | |
| 69 | static int b_xor (lua_State *L) { |
nothing calls this directly
no test coverage detected