mirror of
https://github.com/darlinghq/class-dump.git
synced 2024-11-23 20:39:39 +00:00
20 lines
565 B
Objective-C
20 lines
565 B
Objective-C
// -*- mode: ObjC -*-
|
|
|
|
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
|
|
// Copyright (C) 1997-1998, 2000-2001, 2004-2007 Steve Nygard
|
|
|
|
#import <Foundation/NSString.h>
|
|
|
|
@interface NSString (CDExtensions)
|
|
|
|
+ (NSString *)stringWithFileSystemRepresentation:(const char *)str;
|
|
+ (NSString *)spacesIndentedToLevel:(int)level;
|
|
+ (NSString *)spacesIndentedToLevel:(int)level spacesPerLevel:(int)spacesPerLevel;
|
|
+ (NSString *)stringWithUnichar:(unichar)character;
|
|
|
|
- (BOOL)isFirstLetterUppercase;
|
|
|
|
- (void)print;
|
|
|
|
@end
|