-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathtest_util.h
38 lines (24 loc) · 1.19 KB
/
test_util.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef __TEST_UTIL_H__
#define __TEST_UTIL_H__
#include "adflib.h"
unsigned verify_file_data ( struct AdfVolume * const vol,
const char * const filename,
const unsigned char * const buffer,
const unsigned bytes_written,
const unsigned errors_max );
unsigned validate_file_metadata ( struct AdfVolume * const vol,
const char * const filename,
const unsigned errors_max );
void pattern_AMIGAMIG ( unsigned char * buf,
const unsigned BUFSIZE );
void pattern_random ( unsigned char * buf,
const unsigned BUFSIZE );
unsigned pos2datablockIndex ( unsigned pos,
unsigned blocksize );
unsigned filesize2datablocks ( unsigned fsize,
unsigned blocksize );
unsigned datablocks2extblocks ( unsigned data_blocks );
unsigned filesize2blocks ( unsigned fsize,
unsigned blocksize );
unsigned datablock2posInExtBlk ( unsigned datablock_idx );
#endif