author | snej@snej.local |
Sat Apr 04 20:42:03 2009 -0700 (2009-04-04) | |
changeset 0 | 0a6527af039b |
child 2 | 8982b8fada63 |
permissions | -rw-r--r-- |
1 //
2 // main.m
3 // MYCrypto-iPhone
4 //
5 // Created by Jens Alfke on 3/30/09.
6 // Copyright Jens Alfke 2009. All rights reserved.
7 //
9 #import <UIKit/UIKit.h>
11 int main(int argc, char *argv[]) {
12 /*
13 if (argc<2) {
14 static char *testArgs[] = {"MYCrypto", "Test_All"};
15 argc = 2;
16 argv = testArgs;
17 }
18 RunTestCases(argc,(const char**)argv);
19 */
21 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
22 int retVal = UIApplicationMain(argc, argv, nil, nil);
23 [pool release];
24 return retVal;
25 }