~jazzva/fakenes/ubuntu

« back to all changes in this revision

Viewing changes to src/shared/crc32.h

  • Committer: Sasa Bodiroza
  • Date: 2007-08-15 05:37:49 UTC
  • Revision ID: jazzva@gmail.com-20070815053749-76l0xj66tzgt290p
Upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* FakeNES - A free, portable, Open Source NES emulator.
 
2
 
 
3
   Copyright (c) 2001-2006, FakeNES Team.
 
4
   This is free software.  See 'LICENSE' for details.
 
5
   You must read and accept the license prior to use.
 
6
 
 
7
   crc32.h: CRC32 calculation routines by TRAC. */
 
8
 
 
9
#ifndef CRC32_H_INCLUDED
 
10
#define CRC32_H_INCLUDED
 
11
#include "../include/common.h"
 
12
#ifdef __cplusplus
 
13
extern "C" {
 
14
#endif
 
15
 
 
16
UINT32 make_crc32 (const UINT8 *buffer, unsigned size);
 
17
 
 
18
#ifdef __cplusplus
 
19
}
 
20
#endif   /* __cplusplus */
 
21
#endif   /* !CRC32_H_INCLUDED */