blob: 7c5e94a1c33644eb77a7662bc8d0fa97e0a69218 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef RVL_SDK_OS_CRC_H
#define RVL_SDK_OS_CRC_H
#include "common.h"
#ifdef __cplusplus
extern "C" {
#endif
u32 OSCalcCRC32(const void *, u32);
#ifdef __cplusplus
}
#endif
#endif
|