#ifndef S0008_STRING_TO_INTEGER_HPP #define S0008_STRING_TO_INTEGER_HPP #include #include #include #include using namespace std; class S0008 { public: int myAtoi(string s); }; #endif