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>
12 lines
210 B
C
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;
|
|
};
|