FT_BYTENEG() Perform bit-wise negation on an ASCII character ──────────────────────────────────────────────────────────────────────────────
Syntax
FT_BYTENEG( <cByte> ) -> cNewByte
Arguments
<cByte> is a character from CHR(0) to CHR(255). May be passed in CHR() form, as character literal, or as expression evaluating to CHR() value.
Returns
Returns resulting byte, in CHR() form. If parameters are faulty, returns NIL.
Description
Can be used for bit-wise byte manipulation. In effect, this is a bit-by-bit NEG (two's complement) operation. Equivalent to NEG assembler instruction.
This function is presented to illustrate that bit-wise operations are possible with Clipper code. For greater speed, write .C or .ASM versions and use the Clipper Extend system.
Examples
This code performs a bit-wise NEG on byte represented by CHR(32):