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

# · Swig · 10 lines · 7 code · 2 blank · 1 comment · 0 complexity · 247ac1326fcfab513c52336420b5bfc0 MD5 · raw file

  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);