mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-05 12:21:57 +03:00
13 lines
240 B
C
13 lines
240 B
C
|
//
|
||
|
// NSString_AITruncation.h
|
||
|
// PSMTabBarControl
|
||
|
//
|
||
|
// Created by Evan Schoenberg on 7/14/07.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@interface NSString (AITruncation)
|
||
|
- (NSString *)stringWithEllipsisByTruncatingToLength:(NSUInteger)length;
|
||
|
@end
|