PageRenderTime 16ms CodeModel.GetById 8ms app.highlight 7ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/rel-1-3-15/SWIG/Examples/mzscheme/simple/example.i

#
Swig | 13 lines | 9 code | 2 blank | 2 comment | 0 complexity | 93baaa7f07d44a8b0452df7de72a6f0c 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%include typemaps.i
 8
 9extern double My_variable;
10extern int    fact(int);
11%name(mod) extern int    my_mod(int n, int m);
12extern int    my_mod(int n, int m);
13extern char   *get_time();