| 595 | |
| 596 | |
| 597 | void bitWrite64(uint64_t & x, uint8_t bit, uint8_t value) |
| 598 | { |
| 599 | if (value) bitSet64(x, bit); |
| 600 | else bitClear64(x, bit); |
| 601 | } |
| 602 | |
| 603 | |
| 604 | //////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected