mirror of
https://github.com/libretro/beetle-wswan-libretro.git
synced 2024-11-23 07:59:40 +00:00
15 lines
200 B
C
15 lines
200 B
C
#ifndef _S_CRC32_H
|
|
#define _S_CRC32_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
unsigned long crc32(unsigned long crc, const unsigned char *buf, unsigned int len);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|