| 77 | |
| 78 | |
| 79 | static int b_not (lua_State *L) { |
| 80 | b_uint r = ~luaL_checkunsigned(L, 1); |
| 81 | lua_pushunsigned(L, trim(r)); |
| 82 | return 1; |
| 83 | } |
| 84 | |
| 85 | |
| 86 | static int b_shift (lua_State *L, b_uint r, int i) { |
nothing calls this directly
no test coverage detected