/*-------------------------------------------------- header file for function is_safe created by st10 at Fri Oct 15 09:40:59 PDT 2010 --------------------------------------------------*/ #ifndef is_safe_H #define is_safe_H #include <string> using namespace std; const int MAX_TEMP = 100; bool is_safe(int temp); #endif