summaryrefslogtreecommitdiff
path: root/ltp_framework/include/databin.h
blob: 93c3863c618a94f1b0c07fec8713b9bd112ba37f (plain)
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
39
40
41
42
43
44
#ifndef _DATABIN_H_
#define _DATABIN_H_

/*******************************************************************************
* NAME
*       databingen - fill a buffer with a data pattern
*
* SYNOPSIS
*       (void) databingen(mode, buffer, bsize, offset)
*       int     mode;
*       char    *buffer;
*       int     bsize;
*	int 	offset;
*
* DESCRIPTION
*       datagen fills the buffer pointed to by 'buffer' with 'bsize' bytes
*       of data of the form indicated by 'mode'.
*	All modes (expect r -random) are file offset based.
*	This allows more than process to do writing to the file without
*	corrupting it if the same modes were used.
*	They data modes to choose from, these are:
*
*               'a' - writes an alternating bit pattern (i.e. 0x5555555...)
*
*               'c' - writes a checkerboard pattern (i.e. 0xff00ff00ff00...)
*
*		'C' - writes counting pattern (i.e. 0 - 07, 0 - 07, ...);
*
*		'o' - writes all bits set (i.e. 0xffffffffffffff...)
*
*		'z' - writes all bits cleared (i.e. 0x000000000...);
*
*               'r' - writes random integers
*
* RETURN VALUE
*       None
*
*******************************************************************************/

void databingen( int mode, char *buffer, int bsize, int offset );

int databinchk( int mode, char *buffer, int bsize, int offset, char **errmsg);

#endif