"Fossies" - the Fresh Open Source Software Archive 
Member "xdelta3-3.0.11/examples/iOS/xdelta3-ios-test/xdelta3-ios-test/main.m" (24 Mar 2015, 373 Bytes) of package /linux/misc/xdelta3-3.0.11.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Matlab source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 //
2 // main.m
3 // xdelta3-ios-test
4 //
5 // Created by Joshua MacDonald on 6/16/12.
6 // Copyright (c) 2011, 2012 Joshua MacDonald. All rights reserved.
7 //
8
9 #import <UIKit/UIKit.h>
10
11 #import "Xd3iOSAppDelegate.h"
12
13 int main(int argc, char *argv[])
14 {
15 @autoreleasepool {
16 return UIApplicationMain(argc, argv, nil, NSStringFromClass([Xd3iOSAppDelegate class]));
17 }
18 }