Removed old commented-out code.
[CleverRabbit.git] / RTKStringCategory.h
blobecfeb6f10f6bbdc27aa3a328132f46fb9c53b55d
1 //
2 // RTKStringCategory.h
3 // (CleverRabbit.app)
4 //
5 // Copyright (c) 2005 A. Karl Keller (http://karlk.net)
6 //
7 // This code is open-source, free software, made available without warranty under
8 // the terms of the GNU General Public License, either version 2 or later (see
9 // http://www.gnu.org/licenses/gpl.html or included copy); as such, it may be
10 // redistributed and/or modified in accordance with that document.
13 #import <Cocoa/Cocoa.h>
16 @interface NSString (RTKStringCategory)
18 - (NSString *)verse;
19 - (NSString *)chapter;
20 - (NSString *)book;
21 - (NSData *)utf8Data;
22 - (BOOL)containsSubstring:(NSString *)substring;
23 - (BOOL)containsCaseInsensitiveSubstring:(NSString *)substring;
25 @end