nibble.h

来自「3 bits 转化为 4bits」· C头文件 代码 · 共 29 行

H
29
字号
#ifndef _NIBBLE_H
#define _NIBBLE_H

#if _MSC_VER > 1000
#pragma once
#endif 

struct PelsTable
{
	int nFirstPels;
	int nSecondPels;
	int nindex;
};

class CNibble  
{
public:
	CNibble();
	virtual ~CNibble();

public:
	int TransForm(char* pInBuffer, int nLen, char* pOutBuffer);

protected:
	static PelsTable m_Table[7][256];
};

#endif 

⌨️ 快捷键说明

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