/*-------------------------------------------------- header file for function spiciness_level created by st10 at Wed Mar 10 14:32:50 PST 2010 --------------------------------------------------*/ #ifndef spiciness_level_H #define spiciness_level_H #include <string> using namespace std; const int INFANT_MAX = 500; const int TODDLER_MAX = 1000; string spiciness_level(int scoville_rating); #endif