//Main.h //Headers and defines #include #include #include //#define macintosh //Comment this out if you're not on a mac #ifdef macintosh #include #else #include #endif //Enums and unions //Structs and typedefs //Globals int gIntSize; int maxInt; int numbers[50]; int gDone; #ifdef macintosh long tickstart; long tickend; #endif //Prototypes extern void InitMacintosh(void); void createArray(void); void myExit(int retval); extern void doBubbleSort(void); extern void doQuickSort(void); extern void doTreeSort(void); extern void doHashtable(void);