00001 #ifndef POINT 00002 #define POINT 00003 00004 struct Point{ 00005 double x, y; 00006 }; 00007 00008 int equalPoint(Point p1, Point p2); 00009 #endif