NetNewsWire/Frameworks/RSParser/Utilities/NSData+RSParser.h

22 lines
285 B
C
Raw Normal View History

2017-06-25 19:23:30 +02:00
//
// NSData+RSParser.h
// RSParser
//
// Created by Brent Simmons on 6/24/17.
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
//
@import Foundation;
@interface NSData (RSParser)
- (BOOL)isProbablyHTML;
- (BOOL)isProbablyXML;
- (BOOL)isProbablyJSON;
@end