LL_NEGATE

Negates a 64-bit integer or fractional value returning a 64-bit result.

Prototype

  Word64 __LL_negate(Word64 llvar)

  

  
Example
long long s1 = 0x2345678900000000;

long long result;

result = LL_negate (s1);

// Expected value of result: neg(0x2345678900000000) = 0xDCBA987700000000