Logo  

CS471/571 - Operating Systems

Displaying ./code/Libraries/foo.c

int foo(int a, int b, int c)
{
  if (a < b && b < c) return a;
  if (b < c) return b;
  return c;
}