1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/iPhone/MYCrypto_iPhone_main.m Sat Apr 04 20:42:03 2009 -0700
1.3 @@ -0,0 +1,25 @@
1.4 +//
1.5 +// main.m
1.6 +// MYCrypto-iPhone
1.7 +//
1.8 +// Created by Jens Alfke on 3/30/09.
1.9 +// Copyright Jens Alfke 2009. All rights reserved.
1.10 +//
1.11 +
1.12 +#import <UIKit/UIKit.h>
1.13 +
1.14 +int main(int argc, char *argv[]) {
1.15 + /*
1.16 + if (argc<2) {
1.17 + static char *testArgs[] = {"MYCrypto", "Test_All"};
1.18 + argc = 2;
1.19 + argv = testArgs;
1.20 + }
1.21 + RunTestCases(argc,(const char**)argv);
1.22 + */
1.23 +
1.24 + NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
1.25 + int retVal = UIApplicationMain(argc, argv, nil, nil);
1.26 + [pool release];
1.27 + return retVal;
1.28 +}