| 65 | |
| 66 | /* complement_1 : TWO |- TWO */ |
| 67 | bool simplicity_complement_1(frameItem* dst, frameItem src, const txEnv* env) { |
| 68 | (void) env; /* env is unused. */ |
| 69 | bool x = readBit(&src); |
| 70 | writeBit(dst, !x); |
| 71 | return true; |
| 72 | } |
| 73 | |
| 74 | #define COMPLEMENT_(bits) \ |
| 75 | /* complement_n : TWO^n |- TWO^n */ \ |