import source from 1.3.40
[external/swig.git] / Examples / php / value / example.h
1 /* File : example.h */
2
3 typedef struct {
4      double x, y, z;
5 } Vector;
6
7 double dot_product(Vector a, Vector b);
8 void vector_add(Vector a, Vector b, Vector* result);