| 242 | } |
| 243 | |
| 244 | static bool bb_getBit(BitBucket *bitGrid, uint8_t x, uint8_t y) { |
| 245 | uint32_t offset = y * bitGrid->bitOffsetOrWidth + x; |
| 246 | return (bitGrid->data[offset >> 3] & (1 << (7 - (offset & 0x07)))) != 0; |
| 247 | } |
| 248 | |
| 249 | |
| 250 |
no outgoing calls
no test coverage detected