17 lines
280 B
C
17 lines
280 B
C
|
//
|
||
|
// HDiffPatch.h
|
||
|
// RCTPushy
|
||
|
//
|
||
|
// Created by HouSisong, All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@interface HDiffPatch : NSObject
|
||
|
|
||
|
+ (BOOL)hdiffPatch:(NSString *)path
|
||
|
origin:(NSString *)origin
|
||
|
toDestination:(NSString *)destination;
|
||
|
|
||
|
@end
|