]> git.saurik.com Git - apple/security.git/blob - SecurityTool/sharedTool/NSFileHandle+Formatting.h
Security-59306.11.20.tar.gz
[apple/security.git] / SecurityTool / sharedTool / NSFileHandle+Formatting.h
1 //
2 // NSFileHandle+Formatting.h
3 // sec
4 //
5 //
6
7 #ifndef NSFileHandle_Formatting_h
8 #define NSFileHandle_Formatting_h
9
10 #include <stdio.h>
11
12 #import <Foundation/Foundation.h>
13
14 @interface NSFileHandle (Formatting)
15
16 - (void) writeString: (NSString*) string;
17 - (void) writeFormat: (NSString*) format, ... NS_FORMAT_FUNCTION(1, 2);
18
19 @end
20
21 #endif /* NSFileHandle_Formatting_h */