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-- |
snej@0 | 1 |
// |
snej@0 | 2 |
// main.m |
snej@0 | 3 |
// MYCrypto-iPhone |
snej@0 | 4 |
// |
snej@0 | 5 |
// Created by Jens Alfke on 3/30/09. |
snej@0 | 6 |
// Copyright Jens Alfke 2009. All rights reserved. |
snej@0 | 7 |
// |
snej@0 | 8 |
|
snej@0 | 9 |
#import <UIKit/UIKit.h> |
snej@0 | 10 |
|
snej@0 | 11 |
int main(int argc, char *argv[]) { |
snej@0 | 12 |
/* |
snej@0 | 13 |
if (argc<2) { |
snej@0 | 14 |
static char *testArgs[] = {"MYCrypto", "Test_All"}; |
snej@0 | 15 |
argc = 2; |
snej@0 | 16 |
argv = testArgs; |
snej@0 | 17 |
} |
snej@0 | 18 |
RunTestCases(argc,(const char**)argv); |
snej@0 | 19 |
*/ |
snej@0 | 20 |
|
snej@0 | 21 |
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; |
snej@0 | 22 |
int retVal = UIApplicationMain(argc, argv, nil, nil); |
snej@0 | 23 |
[pool release]; |
snej@0 | 24 |
return retVal; |
snej@0 | 25 |
} |