$calc0 function

int $calc0(
  1. int a,
  2. int b,
  3. int c
)

Implementation

int $calc0(int a, int b, int c) {
  return (a + b * 2) ^ c;
}