rockbox/rbutil/bspatch/bspatch.h
Solomon Peachy 84624e14f8 bspatch: Add a __cplusplus wrapper in the header so rbutil can use it
Change-Id: Iba4e173ec73bfb38144ebb83edf3ed8161d03ebd
2020-04-15 23:33:21 +02:00

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 */