diff -r 000000000000 -r 0a6527af039b iPhone/MYCrypto_iPhone_main.m --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/iPhone/MYCrypto_iPhone_main.m Sat Apr 04 20:42:03 2009 -0700 @@ -0,0 +1,25 @@ +// +// main.m +// MYCrypto-iPhone +// +// Created by Jens Alfke on 3/30/09. +// Copyright Jens Alfke 2009. All rights reserved. +// + +#import + +int main(int argc, char *argv[]) { + /* + if (argc<2) { + static char *testArgs[] = {"MYCrypto", "Test_All"}; + argc = 2; + argv = testArgs; + } + RunTestCases(argc,(const char**)argv); + */ + + NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; + int retVal = UIApplicationMain(argc, argv, nil, nil); + [pool release]; + return retVal; +}