PageRenderTime 39ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/trunk/Examples/php/simple/example.i

#
Swig | 10 lines | 7 code | 2 blank | 1 comment | 0 complexity | 247ac1326fcfab513c52336420b5bfc0 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. extern double Foo;
  5. %}
  6. extern double Foo;
  7. void print_Foo();
  8. int gcd(int x, int y);