mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-26 01:22:53 +01:00
25 lines
444 B
C
25 lines
444 B
C
|
//
|
||
|
// RSParserInternal.h
|
||
|
// RSParser
|
||
|
//
|
||
|
// Created by Brent Simmons on 12/26/16.
|
||
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
||
|
//
|
||
|
|
||
|
@import Foundation;
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
BOOL RSParserObjectIsEmpty(id _Nullable obj);
|
||
|
BOOL RSParserStringIsEmpty(NSString * _Nullable s);
|
||
|
|
||
|
|
||
|
@interface NSDictionary (RSParserInternal)
|
||
|
|
||
|
- (nullable id)rsparser_objectForCaseInsensitiveKey:(NSString *)key;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|
||
|
|