Fix some stray tabs and style violations.
[enjoyable.git] / NSString+FixFilename.h
1 //
2 // NSString+FixFilename.h
3 // Enjoyable
4 //
5 // Created by Joe Wreschnig on 3/7/13.
6 //
7 //
8
9 #import <Foundation/Foundation.h>
10
11 @interface NSString (FixFilename)
12
13 - (NSString *)stringByFixingPathComponent;
14 // Does various operations to make this string suitable for use as
15 // a single path component of a normal filename. Removes / and :
16 // characters and prepends a _ to avoid leading .s or an empty
17 // name.
18
19 @end