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

📄 lzhcrc.h

📁 压缩软件源码
💻 H
字号:
// LzhCRC.h

#ifndef __LZH_CRC_H
#define __LZH_CRC_H

#include <stddef.h>
#include "Common/Types.h"

namespace NArchive {
namespace NLzh {

class CCRC
{
  UInt32 _value;
public:
	static UInt16 Table[256];
	static void InitTable();

  CCRC():  _value(0){};
  void Init() { _value = 0; }
  void Update(const void *data, size_t size);
  UInt16 GetDigest() const { return _value; } 
};

}}

#endif

⌨️ 快捷键说明

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