This repository has been archived on 2026-03-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
netbenixCMD/utils/calc.h
2021-05-08 20:01:49 +02:00

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