1
0
Fork 0
This repository has been archived on 2021-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
uni-m.cds-adv-prog/ex2.4/min.hh
2019-12-10 18:04:54 +01:00

8 lines
131 B
C++
Executable file

//min.hh
#ifndef MIN_HH
#define MIN_HH
namespace mylib {
double min( double a, double b );
int min( int a[], int size);
}
#endif