#ifndef SORT #define SORT #include "XYpoint.h" typedef bool (*Comparator)(const XYPoint*, const XYPoint*); void sort(XYPoint *A[], int nPoints, Comparator lessThan); #endif