016_copydoc.c
Go to the documentation of this file.
1 // objective: test the \copydoc, \copybrief, \copydetails, and \details commands
2 // check: 016__copydoc_8c.xml
3 
4 /** \file
5  * Text \a argument more text.
6  */
7 
8 /** \brief Brief description.
9  * \details Detailed description.
10  */
11 void func(int i);
12 
13 /** \copybrief func(int) */
14 void func_brief();
15 
16 /** \copydetails func(int) */
17 void func_details();
18 
19 /** \copydoc func(int)
20  * More text.
21  */
22 void func_doc();
23 
void func_details()
void func(int i)
Brief description.
Definition: 018_def.c:10
void func_brief()
Brief description.
void func_doc()
Brief description.