// m13.h // @topic W140520 Final Poject // @brief C++ function declarations #ifndef M13_H_INCLUDED_ #define M13_H_INCLUDED_ int process_input(); int get_operator_code( char arithmetic_operator ); void calculate( char arithmetic_operator, int right_operand ); #endif // M13_H_INCLUDED_