Update 0.2.6
This commit is contained in:
parent
58eec7ed22
commit
3a0cb7078c
11 changed files with 95 additions and 61 deletions
12
utils/calc.h
Normal file
12
utils/calc.h
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#ifndef _CALC_H_
|
||||
#define _CALC_H_
|
||||
|
||||
void startCalc();
|
||||
void chooseOperation(char op);
|
||||
void listOperations();
|
||||
int getNumber();
|
||||
|
||||
//Operations
|
||||
void OP_1();
|
||||
|
||||
#endif
|
||||
Reference in a new issue