![]() ![]() |
|
BITRESETBITRESET resets the value of a specified bit in the local bit table to 0 and returns the value of the bit before it was changed.
COMMAND SYNTAXBITRESET(table_no)
SYNTAX ELEMENTStable_no specifies the position in the table of the bit to be reset. If table_no evaluates to zero, all elements in the table are reset to 0 (zero) and the returned value is zero.
NOTESA unique table of 128 bits (numbered 1 to 128) is maintained for each process. Each bit in the table is treated as a two-state flag - the value returned will always be 0 (zero) or 1. BITRESET returns the value of the bit before it was changed - checking and resetting a flag can be accomplished in one step. BITRESET also provides some special functions if you use one of the following table_no values:
See also BITSET.
EXAMPLE
If table entry 112 is 1, returns a value of 1, resets bit 112 to 0, and prints 1. If table entry 112 is 0, returns a value of 0, and prints 0. |