/tags/rel-1-3-26/SWIG/Examples/guile/simple/example.i
Swig | 14 lines | 10 code | 2 blank | 2 comment | 0 complexity | d98553e318306c3514cf1c7c04cb59ad MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
1/* File : example.i */ 2%module Example 3%{ 4/* Put headers and other declarations here */ 5%} 6 7%inline %{ 8extern double My_variable; 9extern int fact(int); 10extern int mod(int n, int m); 11extern char *get_time(); 12%} 13 14%include guile/guilemain.i