Header file for calc module.
More...
#include <stdio.h>
#include <stdlib.h>
Go to the source code of this file.
|
int | add (int a, int b) |
| Adding two values. More...
|
|
int | sub (int a, int b) |
| Subtracting two values. More...
|
|
int | mul (int a, int b) |
| Multiplying two values. More...
|
|
Header file for calc module.
◆ add()
Adding two values.
- Parameters
-
a | First value. |
b | Second value. |
◆ mul()
Multiplying two values.
- Parameters
-
a | First value. |
b | Second value. |
◆ sub()
Subtracting two values.
- Parameters
-
a | First value. |
b | Second value. |