1
0
Fork 0
This repository has been archived on 2021-11-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
uni-m.cds-adv-prog/ex2.4/max.hh
2019-12-10 18:04:54 +01:00

8 lines
131 B
C++
Executable file

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