18 lines
157 B
Markdown
18 lines
157 B
Markdown
# utils.c
|
|
Utility functions for the project
|
|
|
|
```c
|
|
int
|
|
add(int a, int b)
|
|
{
|
|
return a + b;
|
|
}
|
|
```
|
|
|
|
```c
|
|
int
|
|
subtract(int a, int b)
|
|
{
|
|
return a - b;
|
|
}
|
|
```
|