12 lines
147 B
C
12 lines
147 B
C
|
#include "mylibrary.h"
|
||
|
|
||
|
int max_3(int a, int b, int c)
|
||
|
{
|
||
|
return max(max(a,b),c);
|
||
|
}
|
||
|
|
||
|
static int max(int a, int b)
|
||
|
{
|
||
|
return a > b ? a : b;
|
||
|
}
|