9 lines
131 B
C++
9 lines
131 B
C++
|
//max.hh
|
||
|
#ifndef MAX_HH
|
||
|
#define MAX_HH
|
||
|
namespace mylib {
|
||
|
double max( double a, double b );
|
||
|
int max( int a[], int size);
|
||
|
}
|
||
|
#endif
|