* Set a bit in a bit array. * @param array Bit array. * @param index Index in the array. */
| 325 | * @param index Index in the array. |
| 326 | */ |
| 327 | void BitArray_Set(uint8 *array, uint16 index) |
| 328 | { |
| 329 | array[index >> 3] |= (1 << (index & 7)); |
| 330 | } |
| 331 | |
| 332 | /** |
| 333 | * Clear a bit in a bit array. |
no outgoing calls
no test coverage detected