ni_nitdoc: fixed <li> tags style in formatted comments
[nit.git] / tests / test_ni_import_meth.nit.c
1 /* This file is part of NIT ( http://www.nitlanguage.org ).
2 *
3 * Copyright 2011 Alexis Laferrière <alexis.laf@xymus.net>
4 *
5 * This file is free software, which comes along with NIT. This software is
6 * distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
7 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
8 * PARTICULAR PURPOSE. You can modify it is you want, provided this header
9 * is kept unaltered, and a notification of the changes is added.
10 * You are allowed to redistribute it and sell it, alone or is a part of
11 * another product.
12 */
13
14 #include "test_ni_import_meth.nit.h"
15
16 /*
17 C implementation of simple::A::ex_sees_nity
18
19 Imported methods signatures:
20 void A_nity( A recv ) for simple::A::nity
21 */
22 void A_ex_sees_nity___impl( A recv )
23 {
24 A_nity( recv );
25 }
26
27 /*
28 C implementation of simple::A::ex_sees_nities
29
30 Imported methods signatures:
31 void A_nity1( A recv, bigint x ) for simple::A::nity1
32 void A_nity2( A recv, bigint x, bigint y ) for simple::A::nity2
33 */
34 void A_ex_sees_nities___impl( A recv )
35 {
36 A_nity( recv );
37 A_nity1( recv, 3 );
38 A_nity2( recv, 7, 13 );
39 }