class-dump/NSString-Extensions.h
Steve Nygard c8a9f70282 Disabled yacc grammar for parsing types. Replace with CDTypeParser
and CDTypeLexer.  Disable a couple entry points into the old parsed
that were being called by the obsolete ObjcIvar and ObjcMethod
classes.  Switched to using NSStrings throughout datatypes.

Foundation instance variables get formatted pretty well, but it's
crashing on AppKit.
2003-12-11 05:54:27 +00:00

11 lines
304 B
Objective-C

#import <Foundation/NSString.h>
@interface NSString (CDExtensions)
- (id)initWithCString:(const char *)bytes maximumLength:(unsigned int)maximumLength;
//+ (NSString *)spacesOfLength:(int)length;
+ (NSString *)spacesIndentedToLevel:(int)level;
+ (NSString *)stringWithUnichar:(unichar)character;
@end