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