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