I need to do an xor conditional between 3 values, ie i need one of the three values to be true but not more than one and not none.
I thought i could use the xor ^ op
the solution simple it's
a = true; b = false; c = true (a ^ b) || (a ^ c)