summaryrefslogtreecommitdiffstats
path: root/testing/016_copydoc.c
blob: bb8b1bb1505187f2414bab0dfb225d797a663a31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// objective: test the \copydoc, \copybrief, \copydetails, and \details commands
// check: 016__copydoc_8c.xml

/** \file
 *  Text \a argument more text.
 */

/** \brief Brief description.
 *  \details Detailed description.
 */
void func(int i);

/** \copybrief func(int) */
void func_brief();

/** \copydetails func(int) */
void func_details();

/** \copydoc func(int)
 *  More text.
 */
void func_doc();