ClearBit
Docslocal address = ClearBit(offset)Description
This sets bit [offset] of [address] to off.
Example:
MISC::CLEAR_BIT(&bitAddress, 1);
To check if this bit has been enabled:
MISC::IS_BIT_SET(bitAddress, 1); // will return 0 afterwardsParameters
| Name | Type | Description |
|---|---|---|
address | int* | — |
offset | int | — |
Returns
voidThis native does not return a value.