zephyr/doc/doxygen/ex_struct_pre.c
Rodrigo Caballero d35ee355f4 Doc: Change Doxygen style to Javadoc.
Changes the start tag of the comments from /*! to /** in order to comply
with the Javadoc commenting style.

Change-Id: Ie6c46f47ee0a7dd6be9788830620dd1c7ee51159
Signed-off-by: Rodrigo Caballero <rodrigo.caballero.abraham@intel.com>
2016-02-05 20:14:28 -05:00

12 lines
210 B
C

/** @brief Brief description of struct pre.
*
* Detailed description of struct pre. Optional
* */
struct pre {
/** Variable g brief description. */
int g;
/** Variable h brief description. */
int h;
};