Update 0.2.6

This commit is contained in:
netbenix 2021-05-08 20:01:49 +02:00
parent 58eec7ed22
commit 3a0cb7078c
11 changed files with 95 additions and 61 deletions

12
utils/calc.h Normal file
View 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