mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
10 lines
159 B
C
10 lines
159 B
C
#ifndef ARITHMETIC_H
|
|
#define ARITHMETIC_H
|
|
|
|
int add(int a, int b);
|
|
int subtract(int a, int b);
|
|
int multiply(int a, int b);
|
|
double divide(int a, int b);
|
|
|
|
#endif
|