codanna 0.9.19

Code Intelligence for Large Language Models
Documentation
/**
 * @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;
}