These manipulate bits in fields.
Description: Turns off specified bits in a character field.
Legacy RPG400 Example:
C BITOFF '01234567' Field
Modern RPGLE Example:
Field = %bitand(Field : %bitor(not x'FF'));
// Use built-ins for bit ops
