84624e14f8
Change-Id: Iba4e173ec73bfb38144ebb83edf3ed8161d03ebd
19 lines
273 B
C
19 lines
273 B
C
/*
|
|
* Simple wrapper for the bspatch entry point.
|
|
*/
|
|
|
|
#ifndef _BSPATCH_H
|
|
#define _BSPATCH_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int apply_bspatch(const char *infile, const char *outfile, const char *patchfile);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* _BSPATCH_H */
|