blob: eee8141878064304fe149c6f37893c04ad4c9040 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef RECOVER_H
#define RECOVER_H
#include "slices_evt.h"
extern int end;
void recover(slices_evt_t *slicesEvt, char *src, char *dst, char*ddOpts);
int tryRecoverUntilError(slice_t *sliceToRead, address_t *firstError, char *src, char *dst, char *ddOpts);
#endif /*RECOVER_H*/
|