mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-12 21:46:39 +00:00
11 lines
176 B
C
11 lines
176 B
C
|
#pragma once
|
||
|
|
||
|
#ifndef __CRC32_FAST_H__
|
||
|
#define __CRC32_FAST_H__
|
||
|
|
||
|
#include <switch/types.h>
|
||
|
|
||
|
void crc32(const void *data, u64 n_bytes, u32 *crc);
|
||
|
|
||
|
#endif /* __CRC32_FAST_H__ */
|