libcsdbg  1.28
C++ exception (and generic) stack trace debug library
u32 csdbg::util::min ( u32  a,
u32  b,
u32  c 
)
static

Get the minimum of three numbers.

Parameters
[in]a,b,cthe three operands
Returns
the minimum of the three operands

Definition at line 298 of file util.cpp.

299 {
300  if (a < b)
301  return (a < c) ? a : c;
302 
303  return (b < c)? b : c;
304 }