summaryrefslogtreecommitdiffstats
path: root/testing/081_brief_lists.h
blob: 8d13a934c9877fa597a7504f40306515094c7bf4 (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 termination of brief description with lists
// check: 081__brief__lists_8h.xml
/// \file

/// @brief Just with minus
/// - Item 1
/// - Item 2
void c_subr1(void);

/// @brief With minus and hash
/// -# Item 3
/// -# Item 4
void c_subr2(void);

/// @brief With numbers
/// 1. Item 5
/// 2. Item 6
void c_subr3(void);

/// @brief With asterisk
/// * Item 7
/// * Item 8
void c_subr4(void);