c-md-template/includes/utils.h.md
2026-01-12 19:41:21 +01:00

298 B

utils.h

Utility functions for the project

Include Guard

#ifndef UTILS_H
# define UTILS_H

Function declarations

add

int
add(int a, int b);

subtract

int
subtract(int a, int b);

End Guard

#endif