ResKnife/Cocoa/Plug-Ins/Hex Editor/NSData-HexRepresentation.h
2009-11-08 14:07:22 +00:00

11 lines
291 B
Objective-C

#import <Foundation/Foundation.h>
@interface NSData (ResKnifeHexRepresentationExtensions)
- (NSString *)hexRepresentation;
- (NSString *)asciiRepresentation;
- (NSString *)nonLossyAsciiRepresentation;
@end
@interface NSString (ResKnifeHexConversionExtensions)
- (NSData *)dataFromHex;
@end