codanna 0.9.19

Code Intelligence for Large Language Models
Documentation
/**
 * @file math_utils.h
 * @brief Mathematical utility functions
 */

#ifndef MATH_UTILS_H
#define MATH_UTILS_H

/**
 * @brief Add two numbers
 * @param a First number
 * @param b Second number
 * @return Sum of a and b
 */
int add(int a, int b);

/**
 * @brief Multiply two numbers
 * @param a First number
 * @param b Second number
 * @return Product of a and b
 */
int multiply(int a, int b);

#endif // MATH_UTILS_H