1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/** * @file math_utils.cpp * @brief Implementation of mathematical utility functions */ #include "math_utils.h" /** * @brief Add two numbers */ int add(int a, int b) { return a + b; } /** * @brief Multiply two numbers */ int multiply(int a, int b) { return a * b; }