| 34 | |
| 35 | |
| 36 | static b_uint andaux (lua_State *L) { |
| 37 | int i, n = lua_gettop(L); |
| 38 | b_uint r = ~(b_uint)0; |
| 39 | for (i = 1; i <= n; i++) |
| 40 | r &= luaL_checkunsigned(L, i); |
| 41 | return trim(r); |
| 42 | } |
| 43 | |
| 44 | |
| 45 | static int b_and (lua_State *L) { |
no test coverage detected