Bump to doxygen 1.9.2
[platform/upstream/doxygen.git] / testing / 081_brief_lists.h
1 // objective: Test termination of brief description with lists
2 // check: 081__brief__lists_8h.xml
3 /// \file
4
5 /// @brief Just with minus
6 /// - Item 1
7 /// - Item 2
8 void c_subr1(void);
9
10 /// @brief With minus and hash
11 /// -# Item 3
12 /// -# Item 4
13 void c_subr2(void);
14
15 /// @brief With numbers
16 /// 1. Item 5
17 /// 2. Item 6
18 void c_subr3(void);
19
20 /// @brief With asterisk
21 /// * Item 7
22 /// * Item 8
23 void c_subr4(void);