17 lines
418 B
C
17 lines
418 B
C
|
/*
|
||
|
* Copyright (C) 2013 Apple Inc. All rights reserved.
|
||
|
*
|
||
|
* This document is the property of Apple Inc.
|
||
|
* It is considered confidential and proprietary.
|
||
|
*
|
||
|
* This document may not be reproduced or transmitted in any form,
|
||
|
* in whole or in part, without the express written permission of
|
||
|
* Apple Inc.
|
||
|
*/
|
||
|
#ifndef TBT_CP_CRC
|
||
|
#define TBT_CP_CRC
|
||
|
|
||
|
uint32_t tbt_cp_crc(const uint8_t *packet, uint32_t bytes);
|
||
|
|
||
|
#endif
|