public
Description: iPhone FriendFeed client
Homepage:
Clone URL: git://github.com/shanev/friendfeed-iphone.git
Click here to lend your support to: friendfeed-iphone and make a donation at www.pledgie.com !
100755 18 lines (15 sloc) 0.382 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// main.m
// FriendFeed
//
// Created by Shane Vitarana on 3/31/08.
// Copyright __MyCompanyName__ 2008. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
int main(int argc, char *argv[])
{
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    int retVal = UIApplicationMain(argc, argv, nil, @"FriendFeedAppDelegate");
    [pool release];
    return retVal;
}