23 lines
500 B
Objective-C
23 lines
500 B
Objective-C
//
|
|
// MBIMHTTPUtilities.h
|
|
// kordophoned
|
|
//
|
|
// Created by James Magahern on 11/16/18.
|
|
// Copyright © 2018 James Magahern. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NSString* MBIMWebServerFormatRFC822(NSDate *date);
|
|
NSString* MBIMWebServerFormatISO8601(NSDate *date);
|
|
|
|
@interface NSDate (MBIMWebServerFormat)
|
|
- (NSString *)RFC822StringValue;
|
|
- (NSString *)ISO8601StringValue;
|
|
@end
|
|
|
|
@interface NSString (MBIMWebServerFormat)
|
|
- (NSDate *)RFC822Date;
|
|
- (NSDate *)ISO8601Date;
|
|
@end
|