/* file point.h */ typedef struct { float x; float y; } point; float distance(point a, point b); /* end of file point.h */