⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 databin.h

📁 cygwin, 著名的在win32下模拟unix操作系统的东东
💻 H
字号:
#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, unsigned char *buffer, int bsize, int offset );void databinchedk( int mode, unsigned char *buffer, int bsize, int offset, char **errmsg);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -