20 lines
429 B
Mathematica
20 lines
429 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// OpenSSL-for-iOS
|
||
|
//
|
||
|
// Created by Felix Schulze on 04.12.2010.
|
||
|
// Updated by Schulze Felix on 01.04.12.
|
||
|
// Copyright (c) 2012 Felix Schulze . All rights reserved.
|
||
|
// Web: http://www.felixschulze.de
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "AppDelegate.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
@autoreleasepool {
|
||
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
||
|
}
|
||
|
}
|