> actually since C uses int for bools that's exactly the same as> return anInt==anotherInt;> > So you don't even need a ? ;)Man, I must have been sleeping :PMake it something like:
return anInt==anotherInt ? anInt : someValue;
However you got the point I guess :)