# 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; } ```