libcsdbg
1.28
C++ exception (and generic) stack trace debug library
Main Page
Related Pages
Namespaces
Classes
Files
u32
csdbg::util::min
(
u32
a
,
u32
b
,
u32
c
)
static
Get the minimum of three numbers.
Parameters
[in]
a,b,c
the 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
}
csdbg
util
Generated by
1.8.5