/** @file module.h * * @brief A description of the module’s purpose. * * @par */ #ifndef MODULE_H #define MODULE_H /*! * @brief Identify the larger of two 8-bit integers. * * @param[in] num1 The first number to be compared. * @param[in] num2 The second number to be compared. * * @return The value of the larger number. */ int8_t max8(int8_t num1, int8_t num2); #endif /* MODULE_H */ /*** end of file ***/