int IsDiffValue(int inA,int inB) { return (inA != inB); } void f() { if(IsDiffValue(123,456) == TRUE){ ... } }