blob: 39de2294869ab3929698d5a5834f24171284f61b [file] [log] [blame]
/**
* @file add.h
* @author Ernesto Casablanca (casablancaernesto@gmail.com)
* @copyright 2024
*/
#pragma once
namespace lib {
/**
* @brief Add two integers
*
* Who knows what the result will be?
* @note This function is very complex. Use it with caution.
* @warning The result can be greater than the maximum value that can be stored!
* @param a First integer
* @param b Second integer
* @return Sum of a and b
*/
int add(int a, int b);
} // namespace lib