/*---------------------------------------------------------------------------* Project: Dolphin OS Error Handler API File: OSCrc.h Copyright 2008 Nintendo. All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. $Log: OSCrc.h,v $ Revision 1.2 2008/05/19 08:48:06 nakano_yoshinobu Transplanted from RevoEX. $NoKeywords: $ *---------------------------------------------------------------------------*/ #ifndef __OSCRC_H__ #define __OSCRC_H__ #include #ifdef __cplusplus extern "C" { #endif /*---------------------------------------------------------------------------* CRC API *---------------------------------------------------------------------------*/ u16 OSCalcCRC16(const void *datap, u32 size); u32 OSCalcCRC32(const void *datap, u32 size); #ifdef __cplusplus } #endif #endif // __OSCRC_H__