mirror of
https://github.com/libretro/beetle-lynx-libretro.git
synced 2024-11-23 08:10:55 +00:00
7 lines
131 B
C
7 lines
131 B
C
|
#ifndef _S_CRC32_H
|
||
|
#define _S_CRC32_H
|
||
|
|
||
|
unsigned long crc32(unsigned long crc, const unsigned char *buf, unsigned int len);
|
||
|
|
||
|
#endif
|