Files
archived-ballistic/docs/header_template.h
Ronald Caesar e9ec38bcfd docs: add template files
These template files come from the Barr C style guide.

Signed-off-by: Ronald Caesar <github43132@proton.me>
2026-01-09 18:23:35 -04:00

24 lines
466 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/** @file module.h
*
* @brief A description of the modules 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 ***/