1/*
2Copyright (C) 2004-2006 NSRT Team ( http://nsrt.edgeemu.com )
3
4This program is free software; you can redistribute it and/or
5modify it under the terms of the GNU General Public License
6version 2 as published by the Free Software Foundation.
7
8This program is distributed in the hope that it will be useful,
9but WITHOUT ANY WARRANTY; without even the implied warranty of
10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11GNU General Public License for more details.
12
13You should have received a copy of the GNU General Public License
14along with this program; if not, write to the Free Software
15Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16*/
17
18#ifndef CRC32_H
19#define CRC32_H
20
21namespace CRC32lib
22{
23 unsigned int CRC32(const unsigned char *, size_t, unsigned int crc32 = 0xFFFFFFFF);
24}
25
26#endif
27