MCPcopy Create free account
hub / github.com/OpenDUNE/OpenDUNE / BitArray_Clear

Function BitArray_Clear

src/tools.c:337–340  ·  view source on GitHub ↗

* Clear a bit in a bit array. * @param array Bit array. * @param index Index in the array. */

Source from the content-addressed store, hash-verified

335 * @param index Index in the array.
336 */
337void BitArray_Clear(uint8 *array, uint16 index)
338{
339 array[index >> 3] &= ~(1 << (index & 7));
340}
341#endif

Callers 3

Map_InvalidateSelectionFunction · 0.85
GUI_Widget_Viewport_DrawFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected