Path: blob/main/misc/emulator/xnes/snes9x/jma/crc32.h
28798 views
/*1Copyright (C) 2004-2006 NSRT Team ( http://nsrt.edgeemu.com )23This program is free software; you can redistribute it and/or4modify it under the terms of the GNU General Public License5version 2 as published by the Free Software Foundation.67This program is distributed in the hope that it will be useful,8but WITHOUT ANY WARRANTY; without even the implied warranty of9MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the10GNU General Public License for more details.1112You should have received a copy of the GNU General Public License13along with this program; if not, write to the Free Software14Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.15*/1617#ifndef CRC32_H18#define CRC32_H1920namespace CRC32lib21{22unsigned int CRC32(const unsigned char *, size_t, register unsigned int crc32 = 0xFFFFFFFF);23}2425#endif262728