This repository has been archived on 2026-05-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-04-09 15:08:25 +02:00

18 lines
223 B
C

#ifndef CALCULATOR_H
#define CALCULATOR_H
typedef int (*operator)(int, int);
enum operation
{
ADD,
SUB,
MUL,
DIV,
MOD,
};
int calculator(int a, int b, enum operation op);
#endif /* ! CALCULATOR_H */