~ubuntu-branches/ubuntu/warty/unrar-nonfree/warty

« back to all changes in this revision

Viewing changes to crc.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Chris Anderson
  • Date: 2004-07-02 01:53:47 UTC
  • Revision ID: james.westby@ubuntu.com-20040702015347-26ptn0errf3ew0u9
Tags: upstream-3.3.6
ImportĀ upstreamĀ versionĀ 3.3.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _RAR_CRC_
 
2
#define _RAR_CRC_
 
3
 
 
4
extern uint CRCTab[256];
 
5
 
 
6
void InitCRC();
 
7
uint CRC(uint StartCRC,void *Addr,uint Size);
 
8
ushort OldCRC(ushort StartCRC,void *Addr,uint Size);
 
9
 
 
10
#endif