1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-09-20 05:53:25 +01:00
nxdumptool/source/crc32_fast.h

10 lines
152 B
C
Raw Normal View History

2018-06-24 01:48:34 +01:00
#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