1f08c3bdfSopenharmony_ci///
2f08c3bdfSopenharmony_ci// Title
3f08c3bdfSopenharmony_ci// -----
4f08c3bdfSopenharmony_ci
5f08c3bdfSopenharmony_ci///
6f08c3bdfSopenharmony_ci// short description
7f08c3bdfSopenharmony_ciint a(int param, int arg);
8f08c3bdfSopenharmony_ci
9f08c3bdfSopenharmony_ci///
10f08c3bdfSopenharmony_ci// short description
11f08c3bdfSopenharmony_ci// longer description
12f08c3bdfSopenharmony_ciint b(int param, int arg);
13f08c3bdfSopenharmony_ci
14f08c3bdfSopenharmony_ci///
15f08c3bdfSopenharmony_ci// short description
16f08c3bdfSopenharmony_ci//
17f08c3bdfSopenharmony_ci// longer description with empty line
18f08c3bdfSopenharmony_ciint c(int param, int arg);
19f08c3bdfSopenharmony_ci
20f08c3bdfSopenharmony_ci///
21f08c3bdfSopenharmony_ci// short description
22f08c3bdfSopenharmony_ci// longer description
23f08c3bdfSopenharmony_ci// which needs two lines
24f08c3bdfSopenharmony_ciint d(int param, int arg);
25f08c3bdfSopenharmony_ci
26f08c3bdfSopenharmony_ci///
27f08c3bdfSopenharmony_ci// short description
28f08c3bdfSopenharmony_ci//
29f08c3bdfSopenharmony_ci// longer description with empty line
30f08c3bdfSopenharmony_ci// which needs two lines
31f08c3bdfSopenharmony_ciint e(int param, int arg);
32f08c3bdfSopenharmony_ci
33f08c3bdfSopenharmony_ci///
34f08c3bdfSopenharmony_ci// condensed format
35f08c3bdfSopenharmony_ci// @param: desc param
36f08c3bdfSopenharmony_ci// @arg: desc arg
37f08c3bdfSopenharmony_ci// @return: desc return
38f08c3bdfSopenharmony_ci// longer description
39f08c3bdfSopenharmony_ciint f(int param, int arg);
40f08c3bdfSopenharmony_ci
41f08c3bdfSopenharmony_ci///
42f08c3bdfSopenharmony_ci// more airy format
43f08c3bdfSopenharmony_ci//
44f08c3bdfSopenharmony_ci// @param: desc param
45f08c3bdfSopenharmony_ci// @arg: desc arg
46f08c3bdfSopenharmony_ci// @return: desc return
47f08c3bdfSopenharmony_ci//
48f08c3bdfSopenharmony_ci// longer description
49f08c3bdfSopenharmony_ciint g(int param, int arg);
50f08c3bdfSopenharmony_ci
51f08c3bdfSopenharmony_ci///
52f08c3bdfSopenharmony_ci// short description
53f08c3bdfSopenharmony_ci// @return: ``1`` if @param is zero,
54f08c3bdfSopenharmony_ci//	``0`` otherwise.
55f08c3bdfSopenharmony_ciint h(int param, int arg);
56f08c3bdfSopenharmony_ci
57f08c3bdfSopenharmony_ci///
58f08c3bdfSopenharmony_ci// short description
59f08c3bdfSopenharmony_ci// @return:
60f08c3bdfSopenharmony_ci//	* ``1`` if @param is zero,
61f08c3bdfSopenharmony_ci//	* ``0`` otherwise.
62f08c3bdfSopenharmony_ciint i(int param, int arg);
63f08c3bdfSopenharmony_ci
64f08c3bdfSopenharmony_ci///
65f08c3bdfSopenharmony_ci// short description
66f08c3bdfSopenharmony_ciint m(int param, int arg)
67f08c3bdfSopenharmony_ci{ return 0; }
68f08c3bdfSopenharmony_ci
69f08c3bdfSopenharmony_ci///
70f08c3bdfSopenharmony_ci// short description
71f08c3bdfSopenharmony_ciint n(int param,
72f08c3bdfSopenharmony_ci	int arg)
73f08c3bdfSopenharmony_ci{ return 0; }
74f08c3bdfSopenharmony_ci
75f08c3bdfSopenharmony_ci///
76f08c3bdfSopenharmony_ci// short description
77f08c3bdfSopenharmony_ciint o(int param, int arg);
78f08c3bdfSopenharmony_ci
79f08c3bdfSopenharmony_ci///
80f08c3bdfSopenharmony_ci// short description
81f08c3bdfSopenharmony_ciint p(int param,
82f08c3bdfSopenharmony_ci	int arg);
83f08c3bdfSopenharmony_ci
84f08c3bdfSopenharmony_ci
85f08c3bdfSopenharmony_ci/*
86f08c3bdfSopenharmony_ci * check-name: cdoc
87f08c3bdfSopenharmony_ci * check-command: Documentation/sphinx/cdoc.py < $file
88f08c3bdfSopenharmony_ci *
89f08c3bdfSopenharmony_ci * check-output-start
90f08c3bdfSopenharmony_ci   2: Title
91f08c3bdfSopenharmony_ci   3: -----
92f08c3bdfSopenharmony_ci   4: 
93f08c3bdfSopenharmony_ci   4: 
94f08c3bdfSopenharmony_ci   5: 
95f08c3bdfSopenharmony_ci   7: .. c:function:: int a(int param, int arg)
96f08c3bdfSopenharmony_ci   8: 
97f08c3bdfSopenharmony_ci   6: 	Short description.
98f08c3bdfSopenharmony_ci   7: 
99f08c3bdfSopenharmony_ci  12: .. c:function:: int b(int param, int arg)
100f08c3bdfSopenharmony_ci  13: 
101f08c3bdfSopenharmony_ci  10: 	Short description.
102f08c3bdfSopenharmony_ci  11: 
103f08c3bdfSopenharmony_ci  11: 	longer description
104f08c3bdfSopenharmony_ci  12: 
105f08c3bdfSopenharmony_ci  18: .. c:function:: int c(int param, int arg)
106f08c3bdfSopenharmony_ci  19: 
107f08c3bdfSopenharmony_ci  15: 	Short description.
108f08c3bdfSopenharmony_ci  16: 
109f08c3bdfSopenharmony_ci  17: 	longer description with empty line
110f08c3bdfSopenharmony_ci  18: 
111f08c3bdfSopenharmony_ci  24: .. c:function:: int d(int param, int arg)
112f08c3bdfSopenharmony_ci  25: 
113f08c3bdfSopenharmony_ci  21: 	Short description.
114f08c3bdfSopenharmony_ci  22: 
115f08c3bdfSopenharmony_ci  22: 	longer description
116f08c3bdfSopenharmony_ci  23: 	which needs two lines
117f08c3bdfSopenharmony_ci  24: 
118f08c3bdfSopenharmony_ci  31: .. c:function:: int e(int param, int arg)
119f08c3bdfSopenharmony_ci  32: 
120f08c3bdfSopenharmony_ci  27: 	Short description.
121f08c3bdfSopenharmony_ci  28: 
122f08c3bdfSopenharmony_ci  29: 	longer description with empty line
123f08c3bdfSopenharmony_ci  30: 	which needs two lines
124f08c3bdfSopenharmony_ci  31: 
125f08c3bdfSopenharmony_ci  39: .. c:function:: int f(int param, int arg)
126f08c3bdfSopenharmony_ci  40: 
127f08c3bdfSopenharmony_ci  34: 	Condensed format.
128f08c3bdfSopenharmony_ci  35: 
129f08c3bdfSopenharmony_ci  35: 	:param param: desc param
130f08c3bdfSopenharmony_ci  36: 	:param arg: desc arg
131f08c3bdfSopenharmony_ci  37: 	:return: desc return
132f08c3bdfSopenharmony_ci  38: 
133f08c3bdfSopenharmony_ci  38: 	longer description
134f08c3bdfSopenharmony_ci  39: 
135f08c3bdfSopenharmony_ci  49: .. c:function:: int g(int param, int arg)
136f08c3bdfSopenharmony_ci  50: 
137f08c3bdfSopenharmony_ci  42: 	More airy format.
138f08c3bdfSopenharmony_ci  43: 
139f08c3bdfSopenharmony_ci  44: 	:param param: desc param
140f08c3bdfSopenharmony_ci  45: 	:param arg: desc arg
141f08c3bdfSopenharmony_ci  46: 	:return: desc return
142f08c3bdfSopenharmony_ci  47: 
143f08c3bdfSopenharmony_ci  48: 	longer description
144f08c3bdfSopenharmony_ci  49: 
145f08c3bdfSopenharmony_ci  55: .. c:function:: int h(int param, int arg)
146f08c3bdfSopenharmony_ci  56: 
147f08c3bdfSopenharmony_ci  52: 	Short description.
148f08c3bdfSopenharmony_ci  53: 
149f08c3bdfSopenharmony_ci  53: 	:return: ``1`` if **param** is zero,
150f08c3bdfSopenharmony_ci  54: 		``0`` otherwise.
151f08c3bdfSopenharmony_ci  54: 
152f08c3bdfSopenharmony_ci  62: .. c:function:: int i(int param, int arg)
153f08c3bdfSopenharmony_ci  63: 
154f08c3bdfSopenharmony_ci  58: 	Short description.
155f08c3bdfSopenharmony_ci  59: 
156f08c3bdfSopenharmony_ci  59: 	:return: 
157f08c3bdfSopenharmony_ci  60: 		* ``1`` if **param** is zero,
158f08c3bdfSopenharmony_ci  61: 		* ``0`` otherwise.
159f08c3bdfSopenharmony_ci  60: 
160f08c3bdfSopenharmony_ci  66: .. c:function:: int m(int param, int arg)
161f08c3bdfSopenharmony_ci  67: 
162f08c3bdfSopenharmony_ci  65: 	Short description.
163f08c3bdfSopenharmony_ci  66: 
164f08c3bdfSopenharmony_ci  71: .. c:function:: int n(int param, int arg)
165f08c3bdfSopenharmony_ci  72: 
166f08c3bdfSopenharmony_ci  70: 	Short description.
167f08c3bdfSopenharmony_ci  71: 
168f08c3bdfSopenharmony_ci  77: .. c:function:: int o(int param, int arg)
169f08c3bdfSopenharmony_ci  78: 
170f08c3bdfSopenharmony_ci  76: 	Short description.
171f08c3bdfSopenharmony_ci  77: 
172f08c3bdfSopenharmony_ci  81: .. c:function:: int p(int param, int arg)
173f08c3bdfSopenharmony_ci  82: 
174f08c3bdfSopenharmony_ci  80: 	Short description.
175f08c3bdfSopenharmony_ci  81: 
176f08c3bdfSopenharmony_ci * check-output-end
177f08c3bdfSopenharmony_ci */
178