16 lines
267 B
C
16 lines
267 B
C
|
//
|
||
|
// NSArray+CogSort.h
|
||
|
// Cog
|
||
|
//
|
||
|
// Created by Matthew Grinshpun on 16/02/08.
|
||
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@interface NSArray (CogSort)
|
||
|
|
||
|
- (NSComparisonResult)compareFirstString:(NSArray *)anArray;
|
||
|
|
||
|
@end
|