beetle-psx-libretro/scrc32.h

15 lines
200 B
C
Raw Normal View History

#ifndef _S_CRC32_H
#define _S_CRC32_H
2012-11-27 03:44:20 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2014-04-20 21:05:37 +00:00
unsigned long crc32(unsigned long crc, const unsigned char *buf, unsigned int len);
2012-11-27 03:44:20 +00:00
#ifdef __cplusplus
}
#endif
#endif