// m13.h
// implementation of "Running Total" calculator

#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_