29 lines
298 B
Markdown
29 lines
298 B
Markdown
# utils.h
|
|
Utility functions for the project
|
|
|
|
## Include Guard
|
|
|
|
```c
|
|
#ifndef UTILS_H
|
|
# define UTILS_H
|
|
```
|
|
|
|
## Function declarations
|
|
|
|
### [`add`](/srcs/utils.c.md)
|
|
```c
|
|
int
|
|
add(int a, int b);
|
|
```
|
|
|
|
### [`subtract`](/srcs/utils.c.md)
|
|
```c
|
|
int
|
|
subtract(int a, int b);
|
|
```
|
|
|
|
## End Guard
|
|
|
|
```c
|
|
#endif
|
|
```
|