16 lines
294 B
C
16 lines
294 B
C
|
#include <stdlib.h>
|
||
|
#include "stdint.h"
|
||
|
|
||
|
struct buffer_table_index
|
||
|
{
|
||
|
int index;
|
||
|
};
|
||
|
|
||
|
int bsdiff_cgo(uint8_t* oldptr, int64_t oldsize,
|
||
|
uint8_t* newptr, int64_t newsize,
|
||
|
int bufferIndex);
|
||
|
|
||
|
int bspatch_cgo(uint8_t* oldptr, int64_t oldsize,
|
||
|
uint8_t* newptr, int64_t newsize,
|
||
|
int bufferIndex);
|