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