* Clear a bit in a bit array. * @param array Bit array. * @param index Index in the array. */
| 335 | * @param index Index in the array. |
| 336 | */ |
| 337 | void BitArray_Clear(uint8 *array, uint16 index) |
| 338 | { |
| 339 | array[index >> 3] &= ~(1 << (index & 7)); |
| 340 | } |
| 341 | #endif |
no outgoing calls
no test coverage detected