| 44 | |
| 45 | /* high_1 : ONE |- TWO */ |
| 46 | bool simplicity_high_1(frameItem* dst, frameItem src, const txEnv* env) { |
| 47 | (void) env; /* env is unused. */ |
| 48 | (void) src; /* src is unused. */ |
| 49 | writeBit(dst, 1); |
| 50 | return true; |
| 51 | } |
| 52 | |
| 53 | #define HIGH_(bits) \ |
| 54 | /* high_n : ONE |- TWO^n */ \ |
nothing calls this directly
no test coverage detected