12 lines
No EOL
158 B
C
12 lines
No EOL
158 B
C
#ifndef _CALC_H_
|
|
#define _CALC_H_
|
|
|
|
void startCalc();
|
|
void chooseOperation(char op);
|
|
void listOperations();
|
|
int getNumber();
|
|
|
|
//Operations
|
|
void OP_1();
|
|
|
|
#endif |