// ######################################################### // === File #12 of 12 : main.c ============================= // ------------------- C++ code : BEGIN -------------------- // ============================================================== // // Copyright (c) 2002 by Alex Vinokur. This work and all works // derived from it may be copied and modified without any // restrictions other than that a copy of this copyright notice // must be included in any copy of this work or any derived work. // // ============================================================== // ######################################################### // ## mailto:alexvn@bigfoot.com, mailto:alexv@hitechclub.com // ## http://up.to/alexv, http://go.to/alexv_math // ######################################################### // ============================================================== // ############################################################## // // SOFTWARE : C/C++ Program Perfometer // FILE : main.c // // DESCRIPTION : // Main program // // ---- ---------- // Created 2002-03-04 // ---- ---------- // // ############################################################## //================ #include "adapt.h" //================ //================ int main(int argc, char** argv) //================ { ::SetEnvIt (); if (::ParseCommandLine(argc, argv)) return 0; ::MeasureIt (); ::CompareIt (); return 0; } // ------------------- C++ code : END ---------------------- // === File #12 of 12 : main.c =============================